* Name: escape
* Purpose: Escape the string according to escapement type * @link http://smarty.php.net/manual/en/language.modifier.escape.php * escape (Smarty online manual) * @author Monte Ohrt * @param string * @param html|htmlall|url|quotes|hex|hexentity|javascript * @return string */ function smarty_modifier_exploderes($string, $glue = ";") { if (ereg("{", $string)) return unserialize($string); else return explode($glue, $string); } /* vim: set expandtab: */ ?>