summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install.pm
diff options
context:
space:
mode:
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;