summaryrefslogtreecommitdiff
path: root/modules/gallery/controllers/login.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2010-02-07 08:45:10 -0800
committerBharat Mediratta <bharat@menalto.com>2010-02-07 08:45:10 -0800
commitaff5d1cef4cc2514fe6d714788fffcf418d8fc5b (patch)
tree62f237ea453e17056a3f3663cbc0e6203e5fcc9f /modules/gallery/controllers/login.php
parentadac97b5372322be5154996974a6496198105d16 (diff)
Create the concept of a "failed authentication" as semantically
separate from a successful or failed login. 1) Rename user_login_failed event to user_authenticate_failed 2) Rename failed_logins table to failed_auth (bump Gallery module to v27 to rename the table) 3) auth::too_many_failed_logins -> auth::too_many_failures 4) auth::record_failed_auth_attempts -> auth::record_failed_attempts auth::clear_failed_auth_attempts -> auth::clear_failed_attempts
Diffstat (limited to 'modules/gallery/controllers/login.php')
-rw-r--r--modules/gallery/controllers/login.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/controllers/login.php b/modules/gallery/controllers/login.php
index 1426f0d8..fa175ac8 100644
--- a/modules/gallery/controllers/login.php
+++ b/modules/gallery/controllers/login.php
@@ -65,7 +65,7 @@ class Login_Controller extends Controller {
$form->login->inputs["name"]->add_error("invalid_login", 1);
$name = $form->login->inputs["name"]->value;
log::warning("user", t("Failed login for %name", array("name" => $name)));
- module::event("user_login_failed", $name);
+ module::event("user_authenticate_failed", $name);
$valid = false;
}
}