diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-18 03:35:08 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-18 03:35:08 +0000 |
commit | 938bca7601c71669d6a8d24580818660489096ac (patch) | |
tree | 892976f779450aeb9508c8cffb13598945b7af30 | |
parent | 3a5de959b9ae801c1f7f93faab331306507db67a (diff) |
Remove back ticks from sql
-rw-r--r-- | modules/search/helpers/search_event.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/search/helpers/search_event.php b/modules/search/helpers/search_event.php index 68020b10..e701df9b 100644 --- a/modules/search/helpers/search_event.php +++ b/modules/search/helpers/search_event.php @@ -46,6 +46,6 @@ class search_event_Core { static function item_related_update_batch($sql) { $db = Database::instance(); - $db->query("UPDATE `{search_records}` SET `dirty` = 1 WHERE item_id IN ($sql)"); + $db->query("UPDATE {search_records} SET `dirty` = 1 WHERE item_id IN ($sql)"); } } |