misspelled function name

darcs-hash:20080517173626-84dde-da0e6057b127ef3578267bdbc425dcef36f29c2a.gz
This commit is contained in:
Evan Prodromou 2008-05-17 13:36:26 -04:00
parent 1efea523f2
commit d2bd620583
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class RegisterAction extends Action {
# checks if *CANONICAL* email exists
function email_exists($email) {
$email = common_canonicalize_email($email);
$email = common_canonical_email($email);
$user = User::staticGet('email', $email);
return ($user !== false);
}