Merge pull request #630 from Robbt/fix-criteria-escape

removed php escape of characters that broke smartblocks
This commit is contained in:
Lucas Bickel 2018-12-03 22:04:29 +01:00 committed by GitHub
commit 29266b0c0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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") {