-bugfix Only variables should be assigned by reference https://github.com/smarty-php/smarty/issues/227

This commit is contained in:
uwetews
2016-05-07 13:45:22 +02:00
parent f02f943021
commit 608064e5f2
3 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ if (!function_exists('smarty_mb_str_replace')) {
if (is_array($subject)) {
// call mb_replace for each single string in $subject
foreach ($subject as &$string) {
$string = &smarty_mb_str_replace($search, $replace, $string, $c);
$string = smarty_mb_str_replace($search, $replace, $string, $c);
$count += $c;
}
} elseif (is_array($search)) {