aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/search/search.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/search.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/search.php')
-rwxr-xr-xphpBB/includes/search/search.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/search/search.php b/phpBB/includes/search/search.php
index 4c8387bd22..ee9fa0ea98 100755
--- a/phpBB/includes/search/search.php
+++ b/phpBB/includes/search/search.php
@@ -89,8 +89,8 @@ class search_backend
/**
* Retrieves cached search results
*
- * @param int result_count will contain the number of all results for the search (not only for the current page)
- * @param array id_ary is filled with the ids belonging to the requested page that are stored in the cache
+ * @param int &$result_count will contain the number of all results for the search (not only for the current page)
+ * @param array &$id_ary is filled with the ids belonging to the requested page that are stored in the cache
*
* @return int SEARCH_RESULT_NOT_IN_CACHE or SEARCH_RESULT_IN_CACHE or SEARCH_RESULT_INCOMPLETE
*/
@@ -151,7 +151,7 @@ class search_backend
/**
* Caches post/topic ids
*
- * @param array id_ary contains a list of post or topic ids that shall be cached, the first element
+ * @param array &$id_ary contains a list of post or topic ids that shall be cached, the first element
* must have the absolute index $start in the result set.
*/
function save_ids($search_key, $keywords, $author_ary, $result_count, &$id_ary, $start, $sort_dir)