fix bug in regex_replace where a \0 character ingores the rest of the line

This commit is contained in:
monte.ohrt
2008-02-11 15:55:31 +00:00
parent 71f31c53b2
commit cc040d7350
2 changed files with 7 additions and 0 deletions

View File

@@ -22,6 +22,8 @@
*/
function smarty_modifier_regex_replace($string, $search, $replace)
{
if (($pos = strpos($search,"\0")) !== false)
$search = substr($search,0,$pos);
if (preg_match('!([a-zA-Z\s]+)$!s', $search, $match) && (strpos($match[1], 'e') !== false)) {
/* remove eval-modifier from $search */
$search = substr($search, 0, -strlen($match[1])) . preg_replace('![e\s]+!', '', $match[1]);