Subversion Repositories eFlore/Applications.coel-consultation

Compare Revisions

Ignore whitespace Rev 144 → Rev 145

/trunk/controleurs/FicheCollection.php
37,7 → 37,6
} else {
// Récupération des données
$this->donnees['id'] = $_GET['id'];
$this->collectionDao = new CollectionDao();
$this->donnees['info'] = $this->collectionDao->getCollection($this->donnees['id']);
$this->creerPaginationPersonnes($this->donnees['id']);
$this->donnees['publications'] = $this->collectionDao->getPublicationsLiees($this->donnees['id']);
/trunk/controleurs/Fiche.php
20,7 → 20,7
public function __construct() {
parent::__construct();
$this->structureDao = $this->getModele('StructureDao');
$this->collectionDao = $this->getModele('CollectionDao');
$this->collectionDao = new CollectionDao();
$this->personneDao = $this->getModele('PersonneDao');
}