use preg_replace to cover any space chars

This commit is contained in:
mohrt
2006-03-03 14:46:33 +00:00
parent d2f6f2a92b
commit 8006bf79a2

View File

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