Subversion Repositories eFlore/Applications.coel-consultation

Compare Revisions

Ignore whitespace Rev 16 → Rev 17

/trunk/bibliotheque/noyau/ColControleur.php
189,6 → 189,13
return $txt_a_retourner;
}
protected function formaterDate($date) {
if ($date == '' || $date == '0000-00-00' || $date == '0000-00-00 00:00:00') {
$date = 'Inconnue';
}
return $date;
}
protected function nettoyerPointFinal($mot) {
$mot = preg_replace('/[.]$/', '', $mot);
return $mot;