aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/auth')
-rw-r--r--phpBB/phpbb/auth/provider/apache.php4
-rw-r--r--phpBB/phpbb/auth/provider/db.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/auth/provider/apache.php b/phpBB/phpbb/auth/provider/apache.php
index cd1330e7b0..5cbb63c4fc 100644
--- a/phpBB/phpbb/auth/provider/apache.php
+++ b/phpBB/phpbb/auth/provider/apache.php
@@ -204,8 +204,8 @@ class apache extends \phpbb\auth\provider\base
* This function generates an array which can be passed to the user_add
* function in order to create a user
*
- * @param string $username The username of the new \user.
- * @param string $password The password of the new \user.
+ * @param string $username The username of the new user.
+ * @param string $password The password of the new user.
* @return array Contains data that can be passed directly to
* the user_add function.
*/
diff --git a/phpBB/phpbb/auth/provider/db.php b/phpBB/phpbb/auth/provider/db.php
index a18fc258a4..4654e49fb5 100644
--- a/phpBB/phpbb/auth/provider/db.php
+++ b/phpBB/phpbb/auth/provider/db.php
@@ -241,7 +241,7 @@ class db extends \phpbb\auth\provider\base
{
$hash = phpbb_hash($password);
- // Update the password in the users table to the new \format
+ // Update the password in the users table to the new format
$sql = 'UPDATE ' . USERS_TABLE . "
SET user_password = '" . $this->db->sql_escape($hash) . "',
user_pass_convert = 0