Subversion Repositories eFlore/Applications.cel

Compare Revisions

Regard whitespace Rev 2822 → Rev 2823

/trunk/jrest/bibliotheque/GestionUtilisateur.php
53,7 → 53,7
}
// booleanisation des valeurs
$retour['admin'] = ($retour['admin'] == 1);
$retour['licence_acceptee'] = ($retour['licence_acceptee'] == 1);
$retour['licence_acceptee'] = (isset($retour['licence_acceptee']) && ($retour['licence_acceptee'] == 1));
return $retour;
}