diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-18 01:20:30 +0000 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-18 01:20:30 +0000 |
| commit | 8e1817d4e4f6be8b550f38f7103d5cf01ac503f9 (patch) | |
| tree | 118166a9f4d8e612ed3004183f550389abde3ec1 /modules/search/helpers | |
| parent | 222f6e2e23a878b5c598fa189a8c385fe6f0ebf3 (diff) | |
Couple of sql statements that had incorrect prefix handling or no
prefix handling.
Diffstat (limited to 'modules/search/helpers')
| -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 83e65721..68020b10 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)"); } } |
