aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/search/fulltext_sphinx.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/search/fulltext_sphinx.php')
-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);
}
}
}