diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-08-21 13:44:10 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-08-21 13:44:10 +0200 |
commit | a7a05ca75cd646a3d262f3a4b0c67dad3ba0b385 (patch) | |
tree | 467b49e2305c3eeacc6d87f679edc6efe6a33658 /phpBB/includes/functions.php | |
parent | 31aac66f5aca218254a6ff199c21a282bc6059bc (diff) | |
parent | c013e727d43348ac66b1a12fda7e34d46fe241ea (diff) | |
download | forums-a7a05ca75cd646a3d262f3a4b0c67dad3ba0b385.tar forums-a7a05ca75cd646a3d262f3a4b0c67dad3ba0b385.tar.gz forums-a7a05ca75cd646a3d262f3a4b0c67dad3ba0b385.tar.bz2 forums-a7a05ca75cd646a3d262f3a4b0c67dad3ba0b385.tar.xz forums-a7a05ca75cd646a3d262f3a4b0c67dad3ba0b385.zip |
Merge pull request #2894 from Nicofuma/ticket/12999
[ticket/12999] Remove @author tags
* Nicofuma/ticket/12999:
[ticket/12999] Remove @author tags
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 3afd08d40f..21776693b0 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -289,7 +289,6 @@ function phpbb_gmgetdate($time = false) * @param array $allowed_units only allow these units (data array indexes) * * @return mixed data array if $string_only is false -* @author bantu */ function get_formatted_filesize($value, $string_only = true, $allowed_units = false) { @@ -463,7 +462,6 @@ function phpbb_version_compare($version1, $version2, $operator = null) * @param int $perms Permissions to set * * @return bool true on success, otherwise false -* @author faw, phpBB Limited */ function phpbb_chmod($filename, $perms = CHMOD_READ) { @@ -3404,8 +3402,6 @@ function short_ipv6($ip, $length) * * @return mixed false if specified address is not valid, * string otherwise -* -* @author bantu */ function phpbb_ip_normalise($address) { @@ -3434,8 +3430,6 @@ function phpbb_ip_normalise($address) * * @return mixed false on failure, * string otherwise -* -* @author APTX */ function phpbb_inet_ntop($in_addr) { @@ -3505,8 +3499,6 @@ function phpbb_inet_ntop($in_addr) * * @return mixed false if address is invalid, * in_addr representation of the given address otherwise (string) -* -* @author APTX */ function phpbb_inet_pton($address) { @@ -3586,8 +3578,6 @@ function phpbb_inet_pton($address) * * Since null can also be returned, you probably want to compare the result * with === true or === false, -* -* @author bantu */ function phpbb_checkdnsrr($host, $type = 'MX') { |