[ticket/12999] Remove @author tags

PHPBB3-12999
This commit is contained in:
Tristan Darricau 2014-08-19 22:54:45 +02:00
parent da3ddaf676
commit c013e727d4
4 changed files with 0 additions and 19 deletions

View file

@ -289,7 +289,6 @@ function phpbb_gmgetdate($time = false)
* @param array $allowed_units only allow these units (data array indexes) * @param array $allowed_units only allow these units (data array indexes)
* *
* @return mixed data array if $string_only is false * @return mixed data array if $string_only is false
* @author bantu
*/ */
function get_formatted_filesize($value, $string_only = true, $allowed_units = false) 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 * @param int $perms Permissions to set
* *
* @return bool true on success, otherwise false * @return bool true on success, otherwise false
* @author faw, phpBB Limited
*/ */
function phpbb_chmod($filename, $perms = CHMOD_READ) 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, * @return mixed false if specified address is not valid,
* string otherwise * string otherwise
*
* @author bantu
*/ */
function phpbb_ip_normalise($address) function phpbb_ip_normalise($address)
{ {
@ -3434,8 +3430,6 @@ function phpbb_ip_normalise($address)
* *
* @return mixed false on failure, * @return mixed false on failure,
* string otherwise * string otherwise
*
* @author APTX
*/ */
function phpbb_inet_ntop($in_addr) function phpbb_inet_ntop($in_addr)
{ {
@ -3505,8 +3499,6 @@ function phpbb_inet_ntop($in_addr)
* *
* @return mixed false if address is invalid, * @return mixed false if address is invalid,
* in_addr representation of the given address otherwise (string) * in_addr representation of the given address otherwise (string)
*
* @author APTX
*/ */
function phpbb_inet_pton($address) 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 * Since null can also be returned, you probably want to compare the result
* with === true or === false, * with === true or === false,
*
* @author bantu
*/ */
function phpbb_checkdnsrr($host, $type = 'MX') function phpbb_checkdnsrr($host, $type = 'MX')
{ {

View file

@ -27,8 +27,6 @@ if (!defined('IN_PHPBB'))
* @param string $table constant or fullname of the table * @param string $table constant or fullname of the table
* @param int $parent_id parent_id of the current set (default = 0) * @param int $parent_id parent_id of the current set (default = 0)
* @param array $where contains strings to compare closer on the where statement (additional) * @param array $where contains strings to compare closer on the where statement (additional)
*
* @author EXreaction
*/ */
function recalc_nested_sets(&$new_id, $pkey, $table, $parent_id = 0, $where = array()) function recalc_nested_sets(&$new_id, $pkey, $table, $parent_id = 0, $where = array())
{ {
@ -315,8 +313,6 @@ function get_forum_branch($forum_id, $type = 'all', $order = 'descending', $incl
* @param bool $add_log True if log entry should be added * @param bool $add_log True if log entry should be added
* *
* @return bool False on error * @return bool False on error
*
* @author bantu
*/ */
function copy_forum_permissions($src_forum_id, $dest_forum_ids, $clear_dest_perms = true, $add_log = true) function copy_forum_permissions($src_forum_id, $dest_forum_ids, $clear_dest_perms = true, $add_log = true)
{ {
@ -1224,8 +1220,6 @@ function delete_attachments($mode, $ids, $resync = true)
* @param bool $auto_sync Will call sync() if this is true * @param bool $auto_sync Will call sync() if this is true
* *
* @return array Array with affected forums * @return array Array with affected forums
*
* @author bantu
*/ */
function delete_topic_shadows($forum_id, $sql_more = '', $auto_sync = true) function delete_topic_shadows($forum_id, $sql_more = '', $auto_sync = true)
{ {

View file

@ -1323,7 +1323,6 @@ function truncate_string($string, $max_length = 60, $max_store_length = 255, $al
* @param string $custom_profile_url optional parameter to specify a profile url. The user id get appended to this url as &u={user_id} * @param string $custom_profile_url optional parameter to specify a profile url. The user id get appended to this url as &u={user_id}
* *
* @return string A string consisting of what is wanted based on $mode. * @return string A string consisting of what is wanted based on $mode.
* @author BartVB, Acyd Burn
*/ */
function get_username_string($mode, $user_id, $username, $username_colour = '', $guest_username = false, $custom_profile_url = false) function get_username_string($mode, $user_id, $username, $username_colour = '', $guest_username = false, $custom_profile_url = false)
{ {

View file

@ -507,8 +507,6 @@ class ftp extends transfer
/** /**
* FTP fsock transfer class * FTP fsock transfer class
*
* @author wGEric
*/ */
class ftp_fsock extends transfer class ftp_fsock extends transfer
{ {