birthday not fill

git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3417 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
adametz 2018-06-21 07:06:13 +00:00
parent 65338f2165
commit cbbe07c069

View file

@ -88,8 +88,10 @@ class Traveler
*/
public function getBirthDate()
{
if(!is_object($this->birthDate) && !strtotime($this->birthDate)){
return '01.01.1900';
if($this->birthDate != null && $this->birthDate != ""){
if(!is_object($this->birthDate) && !strtotime($this->birthDate)){
return '01.01.1900';
}
}
return $this->birthDate;
}