removed php escape of characters that broke smartblocks
This commit is contained in:
parent
49a715bc98
commit
9904b61eda
1 changed files with 1 additions and 1 deletions
|
@ -1439,7 +1439,7 @@ SQL;
|
|||
foreach ($out as $crit) {
|
||||
$criteria = $crit->getDbCriteria();
|
||||
$modifier = $crit->getDbModifier();
|
||||
$value = htmlspecialchars($crit->getDbValue());
|
||||
$value = $crit->getDbValue();
|
||||
$extra = $crit->getDbExtra();
|
||||
|
||||
if ($criteria == "limit") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue