removed php escape of characters that broke smartblocks

This commit is contained in:
Robbt 2018-12-02 10:39:29 -05:00
parent 49a715bc98
commit 9904b61eda
1 changed files with 1 additions and 1 deletions

View File

@ -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") {