diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-02-07 08:49:37 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-02-07 08:49:37 -0800 |
commit | eda6e3af06aa51281e614ae9a5e7b4ad4fbbae17 (patch) | |
tree | 1c3f57a324609596be0f81112096f87f5f01d6dc /modules/gallery/helpers/gallery_event.php | |
parent | aff5d1cef4cc2514fe6d714788fffcf418d8fc5b (diff) |
Rename user_authenticate_xxx events to user_auth_xxx for brevity.
Diffstat (limited to 'modules/gallery/helpers/gallery_event.php')
-rw-r--r-- | modules/gallery/helpers/gallery_event.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/helpers/gallery_event.php b/modules/gallery/helpers/gallery_event.php index 9ce30929..5fa82160 100644 --- a/modules/gallery/helpers/gallery_event.php +++ b/modules/gallery/helpers/gallery_event.php @@ -113,11 +113,11 @@ class gallery_event_Core { auth::clear_failed_attempts($user); } - static function user_authenticate_failed($name) { + static function user_auth_failed($name) { auth::record_failed_attempt($name); } - static function user_authenticate($user) { + static function user_auth($user) { auth::clear_failed_attempts($user); } |