Fix update_perso() pour autoriser les dates de naissance < 1970

This commit is contained in:
ywarnier 2007-01-14 14:31:29 +00:00
parent 212c845639
commit f1e9b93060
2 changed files with 11 additions and 18 deletions

View File

@ -307,16 +307,8 @@ class Contact
if ($this->birthday>0)
{
if (eregi('\-',$this->birthday))
{
// Si date = chaine
$sql .= ", birthday='".$this->birthday."'";
}
else
{
// Si date = timestamp
$sql .= ", birthday=".$this->db->idate($this->birthday);
}
$birthday = (int) $this->birthday;
$sql .= ", birthday='".$birthday."'";
}
$sql .= " WHERE idp=$id";

View File

@ -75,14 +75,15 @@ if ($_POST["action"] == 'update')
if ($_POST["birthdayyear"])
{
if ($_POST["birthdayyear"]<=1970 && $_SERVER["WINDIR"])
{
// windows mktime does not support negative date timestamp so birthday is not supported for old persons
$contact->birthday = $_POST["birthdayyear"].'-'.$_POST["birthdaymonth"].'-'.$_POST["birthdayday"];
// array_push($error,"Windows ne sachant pas gérer des dates avant 1970, les dates de naissance avant cette date ne seront pas sauvegardées");
} else {
$contact->birthday = mktime(0,0,0,$_POST["birthdaymonth"],$_POST["birthdayday"],$_POST["birthdayyear"]);
}
$birthday = (int) $_POST["birthdayday"];
$birthmonth = (int) $_POST["birthdaymonth"];
$birthyear = (int) $_POST["birthdayyear"];
if($birthmonth>=1 && $birthmonth<=12
&& $birthday>=1 && $birthday<=31
&& $birthyear>=1850 && $birthyear<=date('Y'))
{
$contact->birthday = $birthyear.$birthmonth.$birthday;
}
}
$contact->birthday_alert = $_POST["birthday_alert"];