Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 238 → Rev 244

/trunk/modules/fiche/Fiche.php
48,6 → 48,7
$donnees = $this->obtenirDonnees($donnees);
$donnees['onglet'] = $this->onglet;
$donnees['contenu_onglet'] = $this->getVue('fiche_'.$this->onglet, $donnees);
$donnees['nom_retenu'] = $this->nom_retenu;
$this->setSortie(self::RENDU_CORPS, $this->getVue('fiche_accueil', $donnees), true);
}
70,6 → 71,13
if (isset($_GET['num_nom'])) {
$this->num_nom = $_GET['num_nom'];
}
if (isset($_GET['nom_retenu']) && $_GET['nom_retenu'] != '') {
$this->nom_retenu = $_GET['nom_retenu'];
} else {
$this->nom_retenu = 'n.'.$this->num_nom;
}
if (isset($_GET['nom'])) {
$this->nom = $_GET['nom'];
}