From 944d532ad17506b9cd376aa4757359356887f9af Mon Sep 17 00:00:00 2001 From: tobi132 Date: Mon, 2 Dec 2019 20:51:36 +0100 Subject: [PATCH] Fix uppercase --- system/pages/createaccount.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/pages/createaccount.php b/system/pages/createaccount.php index 5b48e7a6..1ed7050b 100644 --- a/system/pages/createaccount.php +++ b/system/pages/createaccount.php @@ -91,7 +91,7 @@ if($save) if($config['account_mail_unique']) { $test_email_account = new OTS_Account(); - $test_email_account->findByEmail($email); + $test_email_account->findByEMail($email); if($test_email_account->isLoaded()) $errors['email'] = 'Account with this e-mail address already exist.'; }