diff options
author | Nils Adermann <naderman@naderman.de> | 2013-09-16 05:20:27 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2013-09-16 05:20:27 +0200 |
commit | d905358e2be11cc3fe040036b1138e54be7f30dc (patch) | |
tree | 50fb4519de4dd74a3bbdc840efbafb94daffbdc0 /phpBB/phpbb/search | |
parent | 8b8ba3d7ac45447f82fe43e50a0d6c921922d214 (diff) | |
download | forums-d905358e2be11cc3fe040036b1138e54be7f30dc.tar forums-d905358e2be11cc3fe040036b1138e54be7f30dc.tar.gz forums-d905358e2be11cc3fe040036b1138e54be7f30dc.tar.bz2 forums-d905358e2be11cc3fe040036b1138e54be7f30dc.tar.xz forums-d905358e2be11cc3fe040036b1138e54be7f30dc.zip |
[ticket/11700] Fix leftover backslashes in comments
PHPBB3-11700
Diffstat (limited to 'phpBB/phpbb/search')
-rw-r--r-- | phpBB/phpbb/search/fulltext_mysql.php | 6 | ||||
-rw-r--r-- | phpBB/phpbb/search/fulltext_postgres.php | 2 | ||||
-rw-r--r-- | phpBB/phpbb/search/sphinx/config.php | 2 | ||||
-rw-r--r-- | phpBB/phpbb/search/sphinx/config_section.php | 6 | ||||
-rw-r--r-- | phpBB/phpbb/search/sphinx/config_variable.php | 2 |
5 files changed, 9 insertions, 9 deletions
diff --git a/phpBB/phpbb/search/fulltext_mysql.php b/phpBB/phpbb/search/fulltext_mysql.php index a4812c139a..2508ab6d9a 100644 --- a/phpBB/phpbb/search/fulltext_mysql.php +++ b/phpBB/phpbb/search/fulltext_mysql.php @@ -41,13 +41,13 @@ class fulltext_mysql extends \phpbb\search\base * @var \phpbb\config\config */ protected $config; - + /** * Database connection * @var \phpbb\db\driver\driver */ protected $db; - + /** * User object * @var \phpbb\user @@ -703,7 +703,7 @@ class fulltext_mysql extends \phpbb\search\base } /** - * Destroys cached search results, that contained one of the new \words in a post so the results won't be outdated + * Destroys cached search results, that contained one of the new words in a post so the results won't be outdated * * @param string $mode contains the post mode: edit, post, reply, quote ... * @param int $post_id contains the post id of the post to index diff --git a/phpBB/phpbb/search/fulltext_postgres.php b/phpBB/phpbb/search/fulltext_postgres.php index ba9215fcfd..383645920a 100644 --- a/phpBB/phpbb/search/fulltext_postgres.php +++ b/phpBB/phpbb/search/fulltext_postgres.php @@ -733,7 +733,7 @@ class fulltext_postgres extends \phpbb\search\base } /** - * Destroys cached search results, that contained one of the new \words in a post so the results won't be outdated + * Destroys cached search results, that contained one of the new words in a post so the results won't be outdated * * @param string $mode contains the post mode: edit, post, reply, quote ... * @param int $post_id contains the post id of the post to index diff --git a/phpBB/phpbb/search/sphinx/config.php b/phpBB/phpbb/search/sphinx/config.php index 8462298e01..262d6008cc 100644 --- a/phpBB/phpbb/search/sphinx/config.php +++ b/phpBB/phpbb/search/sphinx/config.php @@ -63,7 +63,7 @@ class config } /** - * Appends a new \empty section to the end of the config + * Appends a new empty section to the end of the config * * @param string $name The name for the new section * @return \phpbb\search\sphinx\config_section The newly created section object diff --git a/phpBB/phpbb/search/sphinx/config_section.php b/phpBB/phpbb/search/sphinx/config_section.php index 3a5631ca21..7e6939576b 100644 --- a/phpBB/phpbb/search/sphinx/config_section.php +++ b/phpBB/phpbb/search/sphinx/config_section.php @@ -122,10 +122,10 @@ class config_section } /** - * Create a new \variable object and append it to the variable list of this section + * Create a new variable object and append it to the variable list of this section * - * @param string $name The name for the new \variable - * @param string $value The value for the new \variable + * @param string $name The name for the new variable + * @param string $value The value for the new variable * @return \phpbb\search\sphinx\config_variable Variable object that was created * * @access public diff --git a/phpBB/phpbb/search/sphinx/config_variable.php b/phpBB/phpbb/search/sphinx/config_variable.php index afe4190068..c8f40bfb5f 100644 --- a/phpBB/phpbb/search/sphinx/config_variable.php +++ b/phpBB/phpbb/search/sphinx/config_variable.php @@ -28,7 +28,7 @@ class config_variable private $comment; /** - * Constructs a new \variable object + * Constructs a new variable object * * @param string $name Name of the variable * @param string $value Value of the variable |