Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Recyclebin] Quote condition filter
  • Loading branch information
dvesh3 committed Apr 7, 2022
1 parent e649598 commit a697830
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -119,7 +119,7 @@ public function listAction(Request $request)
$condition = $field . ' BETWEEN ' . $db->quote($value) . ' AND ' . $db->quote($maxTime);
$conditionFilters[] = $condition;
} else {
$conditionFilters[] = $field . $operator . " '" . $value . "' ";
$conditionFilters[] = $field . $operator . ' ' . $db->quote($value);
}
}
}
Expand Down

0 comments on commit a697830

Please sign in to comment.