diff options
author | lpsolit%gmail.com <> | 2005-07-21 06:24:19 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-07-21 06:24:19 +0200 |
commit | b8a33eb39a2fb1e994f84dc013440375b9f45dcc (patch) | |
tree | d7d11e164b306f3724a762a99a9d09c98eb7afb5 /token.cgi | |
parent | deaa3dcc512cc90d608c9242e754ad7de034e7ec (diff) | |
download | bugzilla-b8a33eb39a2fb1e994f84dc013440375b9f45dcc.tar.gz bugzilla-b8a33eb39a2fb1e994f84dc013440375b9f45dcc.tar.xz |
Bug 301453: Move CheckEmailSyntax out of CGI.pl - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=myk
Diffstat (limited to 'token.cgi')
-rwxr-xr-x | token.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -112,7 +112,7 @@ if ( $::action eq 'reqpw' ) { # Make sure the login name looks like an email address. This function # displays its own error and stops execution if the login name looks wrong. - CheckEmailSyntax($cgi->param('loginname')); + check_email_syntax($cgi->param('loginname')); my $quotedloginname = SqlQuote($cgi->param('loginname')); SendSQL("SELECT userid FROM profiles WHERE " . |