aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-07-02 00:04:17 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-07-02 00:04:32 -0400
commit274308148991a498eab875826d6c7615acdef108 (patch)
tree88c3a807c1de244e80d40cad4d4bbd98f043e9bb /phpBB
parentf48effb00197a9ace8de82f3a961992215113257 (diff)
downloadforums-274308148991a498eab875826d6c7615acdef108.tar
forums-274308148991a498eab875826d6c7615acdef108.tar.gz
forums-274308148991a498eab875826d6c7615acdef108.tar.bz2
forums-274308148991a498eab875826d6c7615acdef108.tar.xz
forums-274308148991a498eab875826d6c7615acdef108.zip
[feature/auth-refactor] Fix comment grammar
PHPBB3-9734
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/auth/provider_db.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/auth/provider_db.php b/phpBB/includes/auth/provider_db.php
index a79d031048..894041c9cf 100644
--- a/phpBB/includes/auth/provider_db.php
+++ b/phpBB/includes/auth/provider_db.php
@@ -147,7 +147,7 @@ class phpbb_auth_provider_db implements phpbb_auth_provider_interface
$show_captcha = ($this->config['max_login_attempts'] && $row['user_login_attempts'] >= $this->config['max_login_attempts']) ||
($this->config['ip_login_limit_max'] && $attempts >= $this->config['ip_login_limit_max']);
- // If there are too much login attempts, we need to check for an confirm image
+ // If there are too many login attempts, we need to check for a confirm image
// Every auth module is able to define what to do by itself...
if ($show_captcha)
{