diff options
author | n-aleha <nick_aleha@myway.com> | 2014-05-17 03:43:34 +0300 |
---|---|---|
committer | n-aleha <nick_aleha@myway.com> | 2014-08-03 06:57:05 +0300 |
commit | 19b9df7e630031e3bdf0640a91f7025da3a00257 (patch) | |
tree | 100803d4d1390fbddcd0c7f2c448237c586d9f09 /phpBB/phpbb/auth/auth.php | |
parent | c991b1d587e8ab3b080e2e6762646efe00e05bc5 (diff) | |
download | forums-19b9df7e630031e3bdf0640a91f7025da3a00257.tar forums-19b9df7e630031e3bdf0640a91f7025da3a00257.tar.gz forums-19b9df7e630031e3bdf0640a91f7025da3a00257.tar.bz2 forums-19b9df7e630031e3bdf0640a91f7025da3a00257.tar.xz forums-19b9df7e630031e3bdf0640a91f7025da3a00257.zip |
[ticket/12557] Fix doc block errors found by Sami
PHPBB3-12557
Diffstat (limited to 'phpBB/phpbb/auth/auth.php')
-rw-r--r-- | phpBB/phpbb/auth/auth.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/phpbb/auth/auth.php b/phpBB/phpbb/auth/auth.php index 65249275d4..ecc981eb9f 100644 --- a/phpBB/phpbb/auth/auth.php +++ b/phpBB/phpbb/auth/auth.php @@ -208,9 +208,11 @@ class auth /** * Get forums with the specified permission setting - * if the option is prefixed with !, then the result becomes negated * - * @param bool $clean set to true if only values needs to be returned which are set/unset + * @param string $opt The permission name to lookup. If it's prefixed with !, then the result becomes negated. + * @param bool $clean set to true if only values needs to be returned which are set/unset + * + * @return array Contains the forum ids with the specified permision set to true. */ function acl_getf($opt, $clean = false) { |