This commit is contained in:
Frédéric FRANCE 2020-04-12 00:57:08 +02:00
parent c06cf2eb8d
commit a91139f2d8
No known key found for this signature in database
GPG Key ID: 06809324E4B2ABC1
2 changed files with 3 additions and 4 deletions

View File

@ -346,10 +346,10 @@ class Categorie extends CommonObject
$this->type = $res['type'];
$this->ref_ext = $res['ref_ext'];
$this->entity = $res['entity'];
$this->date_creation = $this->db->jdate($$res['date_creation']);
$this->date_creation = $this->db->jdate($res['date_creation']);
$this->date_modification = $this->db->jdate($res['tms']);
$this->fk_user_creat = $res['fk_user_creat'];
$this->fk_user_modif = $res['fk_user_modif'];
$this->user_creation = $res['fk_user_creat'];
$this->user_modification = $res['fk_user_modif'];
// Retreive all extrafield
// fetch optionals attributes and labels

View File

@ -86,7 +86,6 @@ print '<br>';
print '<table width="100%"><tr><td>';
dol_print_object_info($object);
print '</td></tr></table>';
print '</div>';
dol_fiche_end();