From: Evan Prodromou Date: Sat, 17 May 2008 17:36:26 +0000 (-0400) Subject: misspelled function name X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d2bd620583d2ef5d489c3b3f5c258a7bccc7fa60;p=quix0rs-gnu-social.git misspelled function name darcs-hash:20080517173626-84dde-da0e6057b127ef3578267bdbc425dcef36f29c2a.gz --- diff --git a/actions/register.php b/actions/register.php index d3358cb924..ccf3a50b6b 100644 --- a/actions/register.php +++ b/actions/register.php @@ -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); }