diff options
author | Nils Adermann <naderman@naderman.de> | 2008-12-04 17:01:39 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2008-12-04 17:01:39 +0000 |
commit | c931ce3a54bb76543a133cef0d91984a083874ae (patch) | |
tree | ea9761e8a0b4825ef97240babc4d770b4e6fa767 /phpBB/includes/search | |
parent | 945e6e1e78d610fcbf116a2ecf45d47ec4370a97 (diff) | |
download | forums-c931ce3a54bb76543a133cef0d91984a083874ae.tar forums-c931ce3a54bb76543a133cef0d91984a083874ae.tar.gz forums-c931ce3a54bb76543a133cef0d91984a083874ae.tar.bz2 forums-c931ce3a54bb76543a133cef0d91984a083874ae.tar.xz forums-c931ce3a54bb76543a133cef0d91984a083874ae.zip |
not quite
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9173 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/search')
-rw-r--r-- | phpBB/includes/search/fulltext_native.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php index b1a035ff43..1c6a64d07c 100644 --- a/phpBB/includes/search/fulltext_native.php +++ b/phpBB/includes/search/fulltext_native.php @@ -697,7 +697,7 @@ class fulltext_native extends search_backend if ($left_join_topics) { $sql_array['LEFT_JOIN'][$left_join_topics] = array( - 'FROM' => TOPICS_TABLE => 't', + 'FROM' => array(TOPICS_TABLE => 't'), 'ON' => 'p.topic_id = t.topic_id' ); } |