aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/search/fulltext_native.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2013-09-16 05:00:18 +0200
committerNils Adermann <naderman@naderman.de>2013-09-16 05:00:18 +0200
commit390dc86344c23b658085bae4a719399e5eb579f0 (patch)
tree3c915606ea24a149ef78c21f72663e4ceae60661 /phpBB/phpbb/search/fulltext_native.php
parentee1c15fe7e1d0c823026d2b63ceab276eb878ab0 (diff)
downloadforums-390dc86344c23b658085bae4a719399e5eb579f0.tar
forums-390dc86344c23b658085bae4a719399e5eb579f0.tar.gz
forums-390dc86344c23b658085bae4a719399e5eb579f0.tar.bz2
forums-390dc86344c23b658085bae4a719399e5eb579f0.tar.xz
forums-390dc86344c23b658085bae4a719399e5eb579f0.zip
[ticket/11700] And some last comments with backslashes
PHPBB3-11700
Diffstat (limited to 'phpBB/phpbb/search/fulltext_native.php')
-rw-r--r--phpBB/phpbb/search/fulltext_native.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/search/fulltext_native.php b/phpBB/phpbb/search/fulltext_native.php
index 006b88e07a..50cf588a46 100644
--- a/phpBB/phpbb/search/fulltext_native.php
+++ b/phpBB/phpbb/search/fulltext_native.php
@@ -1271,7 +1271,7 @@ class fulltext_native extends \phpbb\search\base
// We now have unique arrays of all words to be added and removed and
// individual arrays of added and removed words for text and title. What
- // we need to do now is add the new \words (if they don't already exist)
+ // we need to do now is add the new words (if they don't already exist)
// and then add (or remove) matches between the words and this post
if (sizeof($unique_add_words))
{
@@ -1308,7 +1308,7 @@ class fulltext_native extends \phpbb\search\base
$this->db->sql_transaction('begin');
}
- // now update the search match table, remove links to removed words and add links to new \words
+ // now update the search match table, remove links to removed words and add links to new words
foreach ($words['del'] as $word_in => $word_ary)
{
$title_match = ($word_in == 'title') ? 1 : 0;
@@ -1468,7 +1468,7 @@ class fulltext_native extends \phpbb\search\base
WHERE ' . $this->db->sql_in_set('word_id', $sql_in);
$this->db->sql_query($sql);
- // by setting search_last_gc to the new \time here we make sure that if a user reloads because the
+ // by setting search_last_gc to the new time here we make sure that if a user reloads because the
// following query takes too long, he won't run into it again
set_config('search_last_gc', time(), true);