Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 1586 → Rev 1587

/trunk/modules/mobile/sources/Illustrations.php
42,7 → 42,7
}
$images = $this->addSmartFloreImages();
if (!empty($images)) {
$this->donnees = $images + $this->donnees;
$this->donnees = array_merge(array_values($images), $this->donnees);
}
 
return $this->donnees;
121,7 → 121,7
$tagFiche = strtoupper($this->conteneur->getParametre('referentiel'))."nt"
.$this->conteneur->getNomCourant()->getNomSelectionne()->get('num_taxonomique')
;
$sentier = $_GET['sentier'];
$sentier = urldecode($_GET['sentier']);
 
if ($sentier && $tagFiche) {
$images = $this->images->getInfosImagesParFicheEtSentier($tagFiche, $sentier);