X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=application%2Fship-simu%2Fmain%2Fpersonell%2Fcompany%2Fclass_CompanyEmployee.php;h=ee2824ea63f17fba37733d596f6b57ff415d588f;hp=3aee0897c630ce56f5785cade62cd8db63d0ed58;hb=2b7c3e43b2fe0f3c5ae0455d13fa7743b638049f;hpb=ec23e72b16433ac136817f3ea78697fb70236e4a diff --git a/application/ship-simu/main/personell/company/class_CompanyEmployee.php b/application/ship-simu/main/personell/company/class_CompanyEmployee.php index 3aee089..ee2824e 100644 --- a/application/ship-simu/main/personell/company/class_CompanyEmployee.php +++ b/application/ship-simu/main/personell/company/class_CompanyEmployee.php @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, this is free software + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -47,10 +47,10 @@ class CompanyEmployee extends SimulatorPersonell { } // Ist the given birthday valid? - if (!$personellInstance->isDateValid($year, $month, $day)) { + if ($personellInstance->isDateValid($year, $month, $day) === false) { // Something is wrong ... throw new BirthdayInvalidException(array($year, $month, $day), self::EXCEPTION_BIRTH_DATE_IS_INVALID); - } + } // END - if // Set birthday $personellInstance->setBirthday($year, $month, $day);