aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/search
diff options
context:
space:
mode:
authorDhruv Goel <dhruv.goel92@gmail.com>2012-06-27 01:03:04 +0530
committerDhruv <dhruv.goel92@gmail.com>2012-07-12 17:31:56 +0530
commitbfd01f01877bcb9a9be9e2df5c6713c3e338579e (patch)
treeced73355845bc1fdfb0171140cd0dd9c4b296072 /phpBB/includes/search
parentf609555b1ae335b5ea996bf26ee2846058e5256a (diff)
downloadforums-bfd01f01877bcb9a9be9e2df5c6713c3e338579e.tar
forums-bfd01f01877bcb9a9be9e2df5c6713c3e338579e.tar.gz
forums-bfd01f01877bcb9a9be9e2df5c6713c3e338579e.tar.bz2
forums-bfd01f01877bcb9a9be9e2df5c6713c3e338579e.tar.xz
forums-bfd01f01877bcb9a9be9e2df5c6713c3e338579e.zip
[feature/sphinx-fulltext-search] remove all reference returns
PHPBB3-10946
Diffstat (limited to 'phpBB/includes/search')
-rw-r--r--phpBB/includes/search/fulltext_sphinx.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/includes/search/fulltext_sphinx.php b/phpBB/includes/search/fulltext_sphinx.php
index 2e263c1b55..477b1646fb 100644
--- a/phpBB/includes/search/fulltext_sphinx.php
+++ b/phpBB/includes/search/fulltext_sphinx.php
@@ -323,10 +323,10 @@ class phpbb_search_fulltext_sphinx
foreach ($config_data as $section_name => $section_data)
{
- $section = &$config_object->get_section_by_name($section_name);
+ $section = $config_object->get_section_by_name($section_name);
if (!$section)
{
- $section = &$config_object->add_section($section_name);
+ $section = $config_object->add_section($section_name);
}
foreach ($delete as $key => $void)
@@ -346,10 +346,10 @@ class phpbb_search_fulltext_sphinx
if (!isset($non_unique[$key]))
{
- $variable = &$section->get_variable_by_name($key);
+ $variable = $section->get_variable_by_name($key);
if (!$variable)
{
- $variable = &$section->create_variable($key, $value);
+ $variable = $section->create_variable($key, $value);
}
else
{
@@ -358,7 +358,7 @@ class phpbb_search_fulltext_sphinx
}
else
{
- $variable = &$section->create_variable($key, $value);
+ $variable = $section->create_variable($key, $value);
}
}
}