From d2bd620583d2ef5d489c3b3f5c258a7bccc7fa60 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 17 May 2008 13:36:26 -0400 Subject: [PATCH] misspelled function name darcs-hash:20080517173626-84dde-da0e6057b127ef3578267bdbc425dcef36f29c2a.gz --- actions/register.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }