Merge pull request #10734 from ptibogxiv/patch-138

Fixe date on fetch adherent.class.php
This commit is contained in:
Laurent Destailleur 2019-03-04 15:59:10 +01:00 committed by GitHub
commit 6538971be0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1281,9 +1281,12 @@ class Adherent extends CommonObject
$this->public = $obj->public;
$this->datec = $this->db->jdate($obj->datec);
$this->date_creation = $this->db->jdate($obj->datec);
$this->datem = $this->db->jdate($obj->datem);
$this->date_modification= $this->db->jdate($obj->datem);
$this->datefin = $this->db->jdate($obj->datefin);
$this->datevalid = $this->db->jdate($obj->datev);
$this->date_validation = $this->db->jdate($obj->datev);
$this->birth = $this->db->jdate($obj->birthday);
$this->note_private = $obj->note_private;