Made lower to upper case:
[core.git] / inc / classes / main / filter / validator / class_EmailValidatorFilter.php
index 05e095ecddf0de2c40aef4c3f71b5ed88e69be2d..99c2291c5f0716cf0d2362f210e0c27b96b5d759 100644 (file)
@@ -133,7 +133,7 @@ class EmailValidatorFilter extends BaseFilter implements Filterable {
         */
        private function ifEmailIsTaken ($email) {
                // Default is already taken
-               $alreadyTaken = true;
+               $alreadyTaken = TRUE;
 
                // Initialize instance
                $userInstance = NULL;
@@ -155,9 +155,9 @@ class EmailValidatorFilter extends BaseFilter implements Filterable {
                }
 
                // Does the email exist?
-               if ($userInstance->ifEmailAddressExists() === false) {
+               if ($userInstance->ifEmailAddressExists() === FALSE) {
                        // This email has not being used yet
-                       $alreadyTaken = false;
+                       $alreadyTaken = FALSE;
                }
 
                // Return the result