diff options
| author | Dhruv <dhruv.goel92@gmail.com> | 2012-07-26 16:18:53 +0530 |
|---|---|---|
| committer | Dhruv <dhruv.goel92@gmail.com> | 2012-07-26 16:18:53 +0530 |
| commit | 747af894a0b8d47079e704c66dcfce8ce00a7251 (patch) | |
| tree | 267b81aba4d9a5610930ff1e3081802095fa85db /phpBB/includes/search/fulltext_sphinx.php | |
| parent | 9f2faaa8f1799cf794388604dbf7946488be2376 (diff) | |
| download | forums-747af894a0b8d47079e704c66dcfce8ce00a7251.tar forums-747af894a0b8d47079e704c66dcfce8ce00a7251.tar.gz forums-747af894a0b8d47079e704c66dcfce8ce00a7251.tar.bz2 forums-747af894a0b8d47079e704c66dcfce8ce00a7251.tar.xz forums-747af894a0b8d47079e704c66dcfce8ce00a7251.zip | |
[feature/sphinx-fulltext-search] fixing comments
Use // for two liners in comments.
PHPBB3-10946
Diffstat (limited to 'phpBB/includes/search/fulltext_sphinx.php')
| -rw-r--r-- | phpBB/includes/search/fulltext_sphinx.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/search/fulltext_sphinx.php b/phpBB/includes/search/fulltext_sphinx.php index 18037a2be0..9319a57236 100644 --- a/phpBB/includes/search/fulltext_sphinx.php +++ b/phpBB/includes/search/fulltext_sphinx.php @@ -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--) { |
