From: Roland Häder Date: Mon, 13 Oct 2008 22:45:10 +0000 (+0000) Subject: Fix for wrong base class X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=commitdiff_plain;h=61f2d8f7a1726fcea2d00453202bc47150966bd3 Fix for wrong base class --- diff --git a/application/ship-simu/main/user/class_ShipSimuGuest.php b/application/ship-simu/main/user/class_ShipSimuGuest.php index ad63f89..e4edbc5 100644 --- a/application/ship-simu/main/user/class_ShipSimuGuest.php +++ b/application/ship-simu/main/user/class_ShipSimuGuest.php @@ -21,7 +21,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -class ShipSimuGuest extends BaseUser implements ManageableGuest, Registerable { +class ShipSimuGuest extends ShipSimuBaseUser implements ManageableGuest, Registerable { // Exceptions const EXCEPTION_USERNAME_NOT_FOUND = 0x170; const EXCEPTION_USER_EMAIL_NOT_FOUND = 0x171; diff --git a/application/ship-simu/main/user/class_ShipSimuMember.php b/application/ship-simu/main/user/class_ShipSimuMember.php index 5c09bcd..2f72868 100644 --- a/application/ship-simu/main/user/class_ShipSimuMember.php +++ b/application/ship-simu/main/user/class_ShipSimuMember.php @@ -21,7 +21,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -class ShipSimuMember extends BaseUser implements ManageableMember, Registerable, Updateable { +class ShipSimuMember extends ShipSimuBaseUser implements ManageableMember, Registerable, Updateable { /** * Protected constructor *