Subversion Repositories Applications.referentiel

Compare Revisions

Ignore whitespace Rev 240 → Rev 241

/trunk/interfaces/squelettes/fiche_taxon.tpl.html
586,7 → 586,14
<table>
<thead>
<tr>
<th <?=($type == 'inférieurs') ? 'colspan="'.$niveau.'"' : '' ?>>Taxons <?=$type;?></th>
<th <?=($type == 'inférieurs') ? 'colspan="'.$niveau.'"' : '' ?>>
Taxons <?=$type;?>
<? if ($type == 'inférieurs') : ?><br />
(<? foreach ($noms_rang as $rang => $nb_noms) : ?>
<?= $nb_noms.' '.$valeur_rang[$rang].'s ';?>
<? endforeach; ?>)
<? endif; ?>
</th>
<th class="vide" colspan="6">&nbsp;</th>
</tr>
<tr>
/trunk/interfaces/controleurs/FicheTaxon.php
217,7 → 217,9
if ($class_inf != '') {
$this->donnees['classification']['inférieurs'] = $class_inf['inf'];
$this->donnees['niveau'] = $class_inf['niveau'];
}
arsort($class_inf['nb_par_rang']);
$this->donnees['noms_rang'] = $class_inf['nb_par_rang'];
}
}
}