mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/12999] Remove @author tags
PHPBB3-12999
This commit is contained in:
parent
da3ddaf676
commit
c013e727d4
4 changed files with 0 additions and 19 deletions
|
@ -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')
|
||||
{
|
||||
|
|
|
@ -27,8 +27,6 @@ if (!defined('IN_PHPBB'))
|
|||
* @param string $table constant or fullname of the table
|
||||
* @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)
|
||||
*
|
||||
* @author EXreaction
|
||||
*/
|
||||
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
|
||||
*
|
||||
* @return bool False on error
|
||||
*
|
||||
* @author bantu
|
||||
*/
|
||||
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
|
||||
*
|
||||
* @return array Array with affected forums
|
||||
*
|
||||
* @author bantu
|
||||
*/
|
||||
function delete_topic_shadows($forum_id, $sql_more = '', $auto_sync = true)
|
||||
{
|
||||
|
|
|
@ -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}
|
||||
*
|
||||
* @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)
|
||||
{
|
||||
|
|
|
@ -507,8 +507,6 @@ class ftp extends transfer
|
|||
|
||||
/**
|
||||
* FTP fsock transfer class
|
||||
*
|
||||
* @author wGEric
|
||||
*/
|
||||
class ftp_fsock extends transfer
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue