remove e-modifier

This commit is contained in:
mohrt
2005-03-21 14:09:50 +00:00
parent 3c8772fe30
commit 3c8c273178

View File

@@ -21,6 +21,10 @@
*/
function smarty_modifier_regex_replace($string, $search, $replace)
{
if (preg_match('!\W(\w+)$!s', $search, $match) && (strpos($match[1], 'e') !== false)) {
/* remove eval-modifier from $search */
$search = substr($search, 0, -strlen($match[1])) . str_replace('e', '', $match[1]);
}
return preg_replace($search, $replace, $string);
}