1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-29 11:10:18 +02:00

[feature/sphinx-fulltext-search] fixing comments

Use // for two liners in comments.

PHPBB3-10946
This commit is contained in:
Dhruv
2012-07-26 16:18:53 +05:30
parent 9f2faaa8f1
commit 747af894a0
2 changed files with 18 additions and 18 deletions

View File

@@ -483,8 +483,8 @@ class phpbb_search_fulltext_sphinx
$this->sphinx->SetLimits($start, (int) $per_page, SPHINX_MAX_MATCHES);
$result = $this->sphinx->Query($search_query_prefix . str_replace('"', '"', $this->search_query), $this->indexes);
/* Could be connection to localhost:3312 failed (errno=111,
msg=Connection refused) during rotate, retry if so */
// Could be connection to localhost:3312 failed (errno=111,
// msg=Connection refused) during rotate, retry if so
$retries = SPHINX_CONNECT_RETRIES;
while (!$result && (strpos($this->sphinx->_error, "errno=111,") !== false) && $retries--)
{