summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install.pm
diff options
context:
space:
mode:
authorKoosha Khajeh Moogahi <koosha.khajeh@gmail.com>2012-05-18 16:36:12 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2012-05-18 16:36:12 +0200
commitcb114a086e9d68706f326adcc30b149fb06170d1 (patch)
tree98d0a3f2e75363f912cbe914ce8ac451544ad6b3 /Bugzilla/Install.pm
parent7298d3241bea1272ba316c437007d9c07c4ed8b4 (diff)
downloadbugzilla-cb114a086e9d68706f326adcc30b149fb06170d1.tar.gz
bugzilla-cb114a086e9d68706f326adcc30b149fb06170d1.tar.xz
Bug 752303: It is no longer possible to cancel an email address change when this one has already been confirmed
r/a=LpSolit
Diffstat (limited to 'Bugzilla/Install.pm')
-rw-r--r--Bugzilla/Install.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm
index 6c7f72fc4..cffcc704b 100644
--- a/Bugzilla/Install.pm
+++ b/Bugzilla/Install.pm
@@ -319,7 +319,7 @@ sub create_admin {
print get_text('install_admin_get_email') . ' ';
$login = <STDIN>;
chomp $login;
- eval { Bugzilla::User->check_login_name_for_creation($login); };
+ eval { Bugzilla::User->check_login_name($login); };
if ($@) {
say $@;
undef $login;