]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/filter/validator/class_PasswordValidatorFilter.php
Continued:
[core.git] / framework / main / classes / filter / validator / class_PasswordValidatorFilter.php
index 1e2b226479ee2ec904e4674939c03eeef66acdcf..87a8ebe6f0caa5f27e1fd1fc266f909c24ac9109 100644 (file)
@@ -87,13 +87,13 @@ class PasswordValidatorFilter extends BaseFilter implements Filterable {
                        if (empty($password1)) {
                                // Add a message to the response
                                $responseInstance->addFatalMessage('pass1_empty');
-                       } // END - if
+                       }
 
                        // Is the confirmation empty?
                        if (empty($password2)) {
                                // Add a message to the response
                                $responseInstance->addFatalMessage('pass2_empty');
-                       } // END - if
+                       }
 
                        // Abort here
                        throw new FilterChainException($this, self::EXCEPTION_FILTER_CHAIN_INTERCEPTED);
@@ -106,7 +106,7 @@ class PasswordValidatorFilter extends BaseFilter implements Filterable {
 
                        // Abort here
                        throw new FilterChainException($this, self::EXCEPTION_FILTER_CHAIN_INTERCEPTED);
-               } // END - elseif
+               }
        }
 
 }