User class renamed to Member and it's interface
[shipsimu.git] / inc / classes / main / filter / verifier / class_AccountPasswordVerifierFilter.php
index 7f3bc69e35d97494c3ff4e28895c0580c2ac879b..f28d1817ee3b633ddbf03f6386c06d6919cef66c 100644 (file)
@@ -97,7 +97,7 @@ class AccountPasswordVerifierFilter extends BaseFilter implements Filterable {
                // Does it match?
                if ($oldHash != $passHash) {
                        // Throw an exception here to stop the proccessing
-                       throw new AccountPasswordMismatchException($this, User::EXCEPTION_USER_PASS_MISMATCH);
+                       throw new AccountPasswordMismatchException($this, BaseUser::EXCEPTION_USER_PASS_MISMATCH);
                } // END - if
        }
 }