aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrunoais <brunoaiss@gmail.com>2015-03-11 17:46:42 +0000
committerbrunoais <brunoaiss@gmail.com>2015-06-07 18:40:44 +0100
commit1e45a05000687994137adb7e415a9a39f9afd371 (patch)
tree104f9fa84ed16487823e3139ff57438aa9b75d40 /phpBB/develop
parentMerge pull request #3638 from naderman/ticket/13874 (diff)
downloadphpbb-1e45a05000687994137adb7e415a9a39f9afd371.tar.gz
phpbb-1e45a05000687994137adb7e415a9a39f9afd371.tar.bz2
phpbb-1e45a05000687994137adb7e415a9a39f9afd371.zip
[ticket/13685] Add phpbb_dispatcher to fulltext search constructors
PHPBB3-13685
Diffstat (limited to 'phpBB/develop')
-rw-r--r--phpBB/develop/search_fill.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/develop/search_fill.php b/phpBB/develop/search_fill.php
index 2a4dfb212c..07c4024b2f 100644
--- a/phpBB/develop/search_fill.php
+++ b/phpBB/develop/search_fill.php
@@ -40,7 +40,7 @@ if (!class_exists($search_type))
}
$error = false;
-$search = new $search_type($error, $phpbb_root_path, $phpEx, $auth, $config, $db, $user);
+$search = new $search_type($error, $phpbb_root_path, $phpEx, $auth, $config, $db, $user, $phpbb_dispatcher);
if ($error)
{