summaryrefslogtreecommitdiff
path: root/modules/search/helpers/search_task.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/search/helpers/search_task.php')
-rw-r--r--modules/search/helpers/search_task.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/search/helpers/search_task.php b/modules/search/helpers/search_task.php
index 9508f420..061f4084 100644
--- a/modules/search/helpers/search_task.php
+++ b/modules/search/helpers/search_task.php
@@ -45,8 +45,8 @@ class search_task_Core {
$start = microtime(true);
foreach (ORM::factory("item")
->join("search_records", "items.id", "search_records.item_id", "left")
- ->where("search_records.item_id", null)
- ->orwhere("search_records.dirty", 1)
+ ->where("search_records.item_id", "=", null)
+ ->orwhere("search_records.dirty", "=", 1)
->find_all() as $item) {
// The query above can take a long time, so start the timer after its done
// to give ourselves a little time to actually process rows.