Subversion Repositories Applications.referentiel

Compare Revisions

Ignore whitespace Rev 102 → Rev 103

/trunk/interfaces/controleurs/Recherche.php
45,7 → 45,7
$donnees['url_module'] = 'Recherche';
$donnees['url_action'] = 'rechercher';
self::$url_recherche = $this->obtenirUrlRecherche('%s','%s');
self::$url_fiche_taxon = $this->obtenirUrlFicheTaxon($this->referentiel, '%s', '%s', '%s');
self::$url_fiche_taxon = $this->obtenirUrlFicheTaxon($this->referentiel, '%s');
// Gestion du squelette et de la sortie
$this->setSortie(self::RENDU_TETE, $this->getVue('moteur', $donnees));
92,7 → 92,7
public static function getUrlFicheTaxon($taxon) {
$url = '';
if (!is_null(self::$url_fiche_taxon)) {
$url = sprintf(self::$url_fiche_taxon, $taxon['num_nom'], $taxon['num_nom_retenu'], $taxon['nom_complet']);
$url = sprintf(self::$url_fiche_taxon, $taxon['num_nom']);
}
return $url;
}