Subversion Repositories eFlore/Projets.eflore-projets

Compare Revisions

Ignore whitespace Rev 210 → Rev 211

/trunk/services/bibliotheque/nom/NomDAO.php
60,6 → 60,7
implode(' AND ', $conditions).
'ORDER BY ns.nom_sci ASC '.
"LIMIT $navigation ";
 
$resultats = $this->bdd->recupererTous($requete);
 
return $resultats;
115,9 → 116,10
}
 
private function getNavigation() {
$debut = $this->parametres->get('navigation.depart');
$debut = (int) $this->parametres->get('navigation.depart');
$nbre = $this->parametres->get('navigation.limite');
return "$debut,$nbre";
$navigation = "$debut,$nbre";
return $navigation;
}
 
private function getWhere($conditions = array()) {