]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/main/filter/auth/class_UserAuthFilter.php
User class renamed to Member and it's interface
[shipsimu.git] / inc / classes / main / filter / auth / class_UserAuthFilter.php
index db698c2a91a598bdc848d9da1552c590685144a3..25641dc3b90b6debc00e26d57d685d303c021857 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright(c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -112,13 +112,13 @@ class UserAuthFilter extends BaseFilter implements Filterable {
                        $userInstance = Guest::createGuestByUserName($authLogin);
                } else {
                        // Regular user account
-                       $userInstance = User::createUserByUserName($authLogin);
+                       $userInstance = Member::createUserByUserName($authLogin);
                }
 
                // Is the password correct?
                if ($userInstance->getPasswordHash() !== $authHash) {
                        // Mismatching password
-                       throw new UserPasswordMismatchException(array($this, $userInstance), User::EXCEPTION_USER_PASS_MISMATCH);
+                       throw new UserPasswordMismatchException(array($this, $userInstance), BaseUser::EXCEPTION_USER_PASS_MISMATCH);
                } // END - if
 
                // Remember auth and user instances in registry