aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla/User.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2015-02-26 15:29:04 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2015-02-26 15:29:04 +0100
commita7b4b1ba18e33383e0f5723587ba40ddcdf82a91 (patch)
tree31cc0f26153cf54e13275229897d3dbac744db19 /Bugzilla/User.pm
parentd96dbf24caaffe018ef23912c7bb0c95b36ecd2a (diff)
downloadbugs-a7b4b1ba18e33383e0f5723587ba40ddcdf82a91.tar
bugs-a7b4b1ba18e33383e0f5723587ba40ddcdf82a91.tar.gz
bugs-a7b4b1ba18e33383e0f5723587ba40ddcdf82a91.tar.bz2
bugs-a7b4b1ba18e33383e0f5723587ba40ddcdf82a91.tar.xz
bugs-a7b4b1ba18e33383e0f5723587ba40ddcdf82a91.zip
Bug 1061271: Add a hook into Bugzilla::User::check_and_send_account_creation_confirmation()
r=gerv a=glob
Diffstat (limited to 'Bugzilla/User.pm')
-rw-r--r--Bugzilla/User.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm
index acedc65f2..e7d2fbafe 100644
--- a/Bugzilla/User.pm
+++ b/Bugzilla/User.pm
@@ -21,6 +21,7 @@ use Bugzilla::Classification;
use Bugzilla::Field;
use Bugzilla::Group;
use Bugzilla::BugUserLastVisit;
+use Bugzilla::Hook;
use DateTime::TimeZone;
use List::Util qw(max);
@@ -2409,6 +2410,9 @@ sub check_and_send_account_creation_confirmation {
ThrowUserError('account_creation_restricted');
}
+ # Allow extensions to do extra checks.
+ Bugzilla::Hook::process('user_check_account_creation', { login => $login });
+
# Create and send a token for this new account.
require Bugzilla::Token;
Bugzilla::Token::issue_new_user_account_token($login);