From 61f2d8f7a1726fcea2d00453202bc47150966bd3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 13 Oct 2008 22:45:10 +0000 Subject: [PATCH] Fix for wrong base class --- application/ship-simu/main/user/class_ShipSimuGuest.php | 2 +- application/ship-simu/main/user/class_ShipSimuMember.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 * -- 2.39.2