aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/auth/provider_db.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/auth/provider_db.php')
-rw-r--r--phpBB/includes/auth/provider_db.php30
1 files changed, 15 insertions, 15 deletions
diff --git a/phpBB/includes/auth/provider_db.php b/phpBB/includes/auth/provider_db.php
index bba74fc2a3..c55837c685 100644
--- a/phpBB/includes/auth/provider_db.php
+++ b/phpBB/includes/auth/provider_db.php
@@ -30,21 +30,21 @@ class phpbb_auth_provider_db implements phpbb_auth_provider_interface
}
/**
- * Login function
- *
- * @param string $username
- * @param string $password
- * @param string $ip IP address the login is taking place from. Used to
- * limit the number of login attempts per IP address.
- * @param string $browser The user agent used to login
- * @param string $forwarded_for X_FORWARDED_FOR header sent with login request
- * @return array A associative array of the format
- * array(
- * 'status' => status constant
- * 'error_msg' => string
- * 'user_row' => array
- * )
- */
+ * Login function
+ *
+ * @param string $username
+ * @param string $password
+ * @param string $ip IP address the login is taking place from. Used to
+ * limit the number of login attempts per IP address.
+ * @param string $browser The user agent used to login
+ * @param string $forwarded_for X_FORWARDED_FOR header sent with login request
+ * @return array A associative array of the format
+ * array(
+ * 'status' => status constant
+ * 'error_msg' => string
+ * 'user_row' => array
+ * )
+ */
public function login($username, $password, $ip = '', $browser = '', $forwarded_for = '')
{
global $db, $config;