aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/search/fulltext_mysql.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-11-17 19:37:57 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-11-17 19:37:57 +0000
commitd9387842ac7c41d4c92ccf7d797fed214ed38de8 (patch)
tree265e2c90946fd8c8dd95bcde2d5358343ff648f6 /phpBB/includes/search/fulltext_mysql.php
parent17f00978ddef4dfdeb7a69ec4498a9a891354cf6 (diff)
downloadforums-d9387842ac7c41d4c92ccf7d797fed214ed38de8.tar
forums-d9387842ac7c41d4c92ccf7d797fed214ed38de8.tar.gz
forums-d9387842ac7c41d4c92ccf7d797fed214ed38de8.tar.bz2
forums-d9387842ac7c41d4c92ccf7d797fed214ed38de8.tar.xz
forums-d9387842ac7c41d4c92ccf7d797fed214ed38de8.zip
adjust some comments to work with phpdocumentor. :)
git-svn-id: file:///svn/phpbb/trunk@6595 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/search/fulltext_mysql.php')
-rw-r--r--phpBB/includes/search/fulltext_mysql.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php
index 755bd5b814..09e9162d83 100644
--- a/phpBB/includes/search/fulltext_mysql.php
+++ b/phpBB/includes/search/fulltext_mysql.php
@@ -103,9 +103,9 @@ class fulltext_mysql extends search_backend
* Splits keywords entered by a user into an array of words stored in $this->split_words
* Stores the tidied search query in $this->search_query
*
- * @param string $keywords Contains the keyword as entered by the user
+ * @param string &$keywords Contains the keyword as entered by the user
* @param string $terms is either 'all' or 'any'
- * @return false if no valid keywords were found and otherwise true
+ * @return bool false if no valid keywords were found and otherwise true
*/
function split_keywords(&$keywords, $terms)
{
@@ -215,7 +215,7 @@ class fulltext_mysql extends search_backend
/**
* Performs a search on keywords depending on display specific params.
*
- * @param array $id_ary passed by reference, to be filled with ids for the page specified by $start and $per_page, should be ordered
+ * @param array &$id_ary passed by reference, to be filled with ids for the page specified by $start and $per_page, should be ordered
* @param int $start indicates the first index of the page
* @param int $per_page number of ids each page is supposed to contain
* @return total number of results
@@ -412,7 +412,7 @@ class fulltext_mysql extends search_backend
/**
* Performs a search on an author's posts without caring about message contents. Depends on display specific params
*
- * @param array $id_ary passed by reference, to be filled with ids for the page specified by $start and $per_page, should be ordered
+ * @param array &$id_ary passed by reference, to be filled with ids for the page specified by $start and $per_page, should be ordered
* @param int $start indicates the first index of the page
* @param int $per_page number of ids each page is supposed to contain
* @return total number of results