aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/search/fulltext_sphinx.php
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2012-08-08 11:07:47 +0530
committerDhruv <dhruv.goel92@gmail.com>2012-08-08 11:07:47 +0530
commit794d6ec443bd16ad2f7776d1ba2abcf2ce1c5553 (patch)
treecd7b1d7da40d1719072b390d2c39cd259354dcaa /phpBB/includes/search/fulltext_sphinx.php
parent9eb6c2ba5b6fb1c1090f5a89387a8fa8ae958a85 (diff)
downloadforums-794d6ec443bd16ad2f7776d1ba2abcf2ce1c5553.tar
forums-794d6ec443bd16ad2f7776d1ba2abcf2ce1c5553.tar.gz
forums-794d6ec443bd16ad2f7776d1ba2abcf2ce1c5553.tar.bz2
forums-794d6ec443bd16ad2f7776d1ba2abcf2ce1c5553.tar.xz
forums-794d6ec443bd16ad2f7776d1ba2abcf2ce1c5553.zip
[ticket/11011] pass $auth to search backend constructor
$auth global var is passed to search backend constructor, as it is used by sphinx backend. PHPBB3-11011
Diffstat (limited to 'phpBB/includes/search/fulltext_sphinx.php')
-rw-r--r--phpBB/includes/search/fulltext_sphinx.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/search/fulltext_sphinx.php b/phpBB/includes/search/fulltext_sphinx.php
index 0662b70a2b..d4ded8efc0 100644
--- a/phpBB/includes/search/fulltext_sphinx.php
+++ b/phpBB/includes/search/fulltext_sphinx.php
@@ -51,7 +51,7 @@ class phpbb_search_fulltext_sphinx
*
* @param string|bool $error Any error that occurs is passed on through this reference variable otherwise false
*/
- public function __construct(&$error, $phpbb_root_path, $phpEx, $config, $db, $user)
+ public function __construct(&$error, $phpbb_root_path, $phpEx, $auth, $config, $db, $user)
{
$this->phpbb_root_path = $phpbb_root_path;
$this->phpEx = $phpEx;