Copyright updated, menu class added for 'home'
[shipsimu.git] / application / ship-simu / main / personell / company / class_CompanyEmployee.php
index 3aee0897c630ce56f5785cade62cd8db63d0ed58..ee2824ea63f17fba37733d596f6b57ff415d588f 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, 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);