fix htmlspecialchars() conflict

This commit is contained in:
mohrt
2003-04-21 16:53:03 +00:00
parent 1f0f8d062c
commit 4a6b5269a3

View File

@@ -47,8 +47,8 @@ function smarty_modifier_debug_print_var($var, $depth = 0, $length = 40)
} else {
$results = $var;
}
$results = preg_replace($_search, $_replace, $results);
$results = htmlspecialchars($results);
$results = preg_replace($_search, $_replace, $results);
return $results;
}
}