aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.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/functions.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/functions.php')
-rw-r--r--phpBB/includes/functions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 8021e0c6c2..6b87e9acf9 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -153,7 +153,7 @@ function gen_rand_string($num_chars = 8)
/**
* Return unique id
-* @param $extra additional entropy
+* @param string $extra additional entropy
*/
function unique_id($extra = 'c')
{
@@ -401,9 +401,9 @@ if (!function_exists('stripos'))
* Find position of first occurrence of a case-insensitive string
*
* @param string $haystack is the string to search in
- * @param string needle is the string to search for
+ * @param string $needle is the string to search for
*
- * @return Returns the numeric position of the first occurrence of needle in the haystack string. Unlike strpos(), stripos() is case-insensitive.
+ * @return mixed Returns the numeric position of the first occurrence of needle in the haystack string. Unlike strpos(), stripos() is case-insensitive.
* Note that the needle may be a string of one or more characters.
* If needle is not found, stripos() will return boolean FALSE.
*/