mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/11700] Fix leftover backslashes in comments
PHPBB3-11700
This commit is contained in:
parent
8b8ba3d7ac
commit
d905358e2b
13 changed files with 18 additions and 18 deletions
|
@ -77,7 +77,7 @@ interface provider_interface
|
|||
* options with whatever configuraton values are passed to it as an array.
|
||||
* It then returns the name of the acp file related to this authentication
|
||||
* provider.
|
||||
* @param array $new_config Contains the new \configuration values that
|
||||
* @param array $new_config Contains the new configuration values that
|
||||
* have been set in acp_board.
|
||||
* @return array|null Returns null if not implemented or an array with
|
||||
* the template file name and an array of the vars
|
||||
|
|
|
@ -178,7 +178,7 @@ class db extends \phpbb\config\config
|
|||
/**
|
||||
* Increments an integer config value directly in the database.
|
||||
*
|
||||
* Using this method instead of setting the new \value directly avoids race
|
||||
* Using this method instead of setting the new value directly avoids race
|
||||
* conditions and unlike set_atomic it cannot fail.
|
||||
*
|
||||
* @param string $key The configuration option's name
|
||||
|
|
|
@ -70,7 +70,7 @@ class timezone extends \phpbb\db\migration\migration
|
|||
*
|
||||
* @param $timezone float Users timezone in 3.0
|
||||
* @param $dst int Users daylight saving time
|
||||
* @return string Users new \php Timezone which is used since 3.1
|
||||
* @return string Users new php Timezone which is used since 3.1
|
||||
*/
|
||||
public function convert_phpbb30_timezone($timezone, $dst)
|
||||
{
|
||||
|
|
|
@ -240,7 +240,7 @@ class permission implements \phpbb\db\migration\tool\tool_interface
|
|||
/**
|
||||
* Add a new permission role
|
||||
*
|
||||
* @param string $role_name The new \role name
|
||||
* @param string $role_name The new role name
|
||||
* @param sting $role_type The type (u_, m_, a_)
|
||||
* @return null
|
||||
*/
|
||||
|
@ -279,7 +279,7 @@ class permission implements \phpbb\db\migration\tool\tool_interface
|
|||
* Update the name on a permission role
|
||||
*
|
||||
* @param string $old_role_name The old role name
|
||||
* @param string $new_role_name The new \role name
|
||||
* @param string $new_role_name The new role name
|
||||
* @return null
|
||||
*/
|
||||
public function role_update($old_role_name, $new_role_name)
|
||||
|
|
|
@ -52,7 +52,7 @@ class finder
|
|||
protected $cached_queries;
|
||||
|
||||
/**
|
||||
* Creates a new \finder instance with its dependencies
|
||||
* Creates a new finder instance with its dependencies
|
||||
*
|
||||
* @param \phpbb\extension\manager $extension_manager An extension manager
|
||||
* instance that provides the finder with a list of active
|
||||
|
|
|
@ -29,7 +29,7 @@ class finder
|
|||
protected $php_ext;
|
||||
|
||||
/**
|
||||
* Creates a new \finder instance.
|
||||
* Creates a new finder instance.
|
||||
*
|
||||
* @param string $phpbb_root_path Path to the phpbb root directory
|
||||
* @param string $php_ext php file extension
|
||||
|
|
|
@ -18,7 +18,7 @@ if (!defined('IN_PHPBB'))
|
|||
}
|
||||
|
||||
/**
|
||||
* Replacement for a superglobal (\like $_GET or $_POST) which calls
|
||||
* Replacement for a superglobal (like $_GET or $_POST) which calls
|
||||
* trigger_error on all operations but isset, overloads the [] operator with SPL.
|
||||
*
|
||||
* @package \phpbb\request\request
|
||||
|
|
|
@ -41,13 +41,13 @@ class fulltext_mysql extends \phpbb\search\base
|
|||
* @var \phpbb\config\config
|
||||
*/
|
||||
protected $config;
|
||||
|
||||
|
||||
/**
|
||||
* Database connection
|
||||
* @var \phpbb\db\driver\driver
|
||||
*/
|
||||
protected $db;
|
||||
|
||||
|
||||
/**
|
||||
* User object
|
||||
* @var \phpbb\user
|
||||
|
@ -703,7 +703,7 @@ class fulltext_mysql extends \phpbb\search\base
|
|||
}
|
||||
|
||||
/**
|
||||
* Destroys cached search results, that contained one of the new \words in a post so the results won't be outdated
|
||||
* Destroys cached search results, that contained one of the new words in a post so the results won't be outdated
|
||||
*
|
||||
* @param string $mode contains the post mode: edit, post, reply, quote ...
|
||||
* @param int $post_id contains the post id of the post to index
|
||||
|
|
|
@ -733,7 +733,7 @@ class fulltext_postgres extends \phpbb\search\base
|
|||
}
|
||||
|
||||
/**
|
||||
* Destroys cached search results, that contained one of the new \words in a post so the results won't be outdated
|
||||
* Destroys cached search results, that contained one of the new words in a post so the results won't be outdated
|
||||
*
|
||||
* @param string $mode contains the post mode: edit, post, reply, quote ...
|
||||
* @param int $post_id contains the post id of the post to index
|
||||
|
|
|
@ -63,7 +63,7 @@ class config
|
|||
}
|
||||
|
||||
/**
|
||||
* Appends a new \empty section to the end of the config
|
||||
* Appends a new empty section to the end of the config
|
||||
*
|
||||
* @param string $name The name for the new section
|
||||
* @return \phpbb\search\sphinx\config_section The newly created section object
|
||||
|
|
|
@ -122,10 +122,10 @@ class config_section
|
|||
}
|
||||
|
||||
/**
|
||||
* Create a new \variable object and append it to the variable list of this section
|
||||
* Create a new variable object and append it to the variable list of this section
|
||||
*
|
||||
* @param string $name The name for the new \variable
|
||||
* @param string $value The value for the new \variable
|
||||
* @param string $name The name for the new variable
|
||||
* @param string $value The value for the new variable
|
||||
* @return \phpbb\search\sphinx\config_variable Variable object that was created
|
||||
*
|
||||
* @access public
|
||||
|
|
|
@ -28,7 +28,7 @@ class config_variable
|
|||
private $comment;
|
||||
|
||||
/**
|
||||
* Constructs a new \variable object
|
||||
* Constructs a new variable object
|
||||
*
|
||||
* @param string $name Name of the variable
|
||||
* @param string $value Value of the variable
|
||||
|
|
|
@ -69,7 +69,7 @@ interface tree_interface
|
|||
/**
|
||||
* Moves all children of one item to another item
|
||||
*
|
||||
* If the new parent already has children, the new \children are appended
|
||||
* If the new parent already has children, the new children are appended
|
||||
* to the list.
|
||||
*
|
||||
* @param int $current_parent_id The current parent item
|
||||
|
|
Loading…
Add table
Reference in a new issue