X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;f=inc%2Fsmarty%2Fnode_methodz%2Fmodifier.default.php;fp=inc%2Fsmarty%2Fnode_methodz%2Fmodifier.default.php;h=0000000000000000000000000000000000000000;hb=f9b322cc7cb38f9d23168c291ebc3e49040a4999;hp=8268e396ff0dc77837d3f81a64d8b4ab62718e29;hpb=673e23209e2e3b9782c037e70156a1a20154a5b9;p=mirrors%2FKyberia-bloodline.git diff --git a/inc/smarty/node_methodz/modifier.default.php b/inc/smarty/node_methodz/modifier.default.php deleted file mode 100644 index 8268e39..0000000 --- a/inc/smarty/node_methodz/modifier.default.php +++ /dev/null @@ -1,31 +0,0 @@ - - * Name: default
- * Purpose: designate default value for empty variables - * @link http://smarty.php.net/manual/en/language.modifier.default.php - * default (Smarty online manual) - * @param string - * @param string - * @return string - */ -function smarty_modifier_default($string, $default = '') -{ - if (!isset($string) || $string === '') - return $default; - else - return $string; -} - -/* vim: set expandtab: */ - -?>