summaryrefslogtreecommitdiff
path: root/actions/register.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-05-17 13:36:26 -0400
committerEvan Prodromou <evan@prodromou.name>2008-05-17 13:36:26 -0400
commitd2bd620583d2ef5d489c3b3f5c258a7bccc7fa60 (patch)
tree003359fe4c5f4d8494c23a139c65db1166ef1dce /actions/register.php
parent1efea523f29a5d7758da28d8bee63c31a97c03c4 (diff)
misspelled function name
darcs-hash:20080517173626-84dde-da0e6057b127ef3578267bdbc425dcef36f29c2a.gz
Diffstat (limited to 'actions/register.php')
-rw-r--r--actions/register.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/register.php b/actions/register.php
index d3358cb92..ccf3a50b6 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);
}