Subversion Repositories eFlore/Projets.eflore-projets

Compare Revisions

Ignore whitespace Rev 1298 → Rev 1299

/branches/v5.12-baouque/services/modules/0.1/commun/MetaDonnees.php
330,7 → 330,7
if ($table_contact[0] != array()) {
$this->table_retour[$key.'.contact'] = '';
foreach ($table_contact as $info => $valeur) {
$this->table_retour[$key.'.contact'] .= $valeur['contact.prenom']." ".$valeur['contact.nom'];
$this->table_retour[$key.'.contact'] .= ($valeur['contact.prenom'] ?? '')." ". ($valeur['contact.nom'] ?? '');
}
//on affiche les détails des autres contacts :
$this->afficherTableDetails($key.'.contact', $table_contact);