Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 1296 → Rev 1297

/trunk/jrest/services/InventoryObservationList.php
50,16 → 50,12
$taille_page = 50;
$criteres = array();
 
if (isset($uid[1]))
{
$criteres = $chercheur_observations->parserRequeteCriteres($uid[1]) ;
if (isset($criteres['numero_page']) && isset($criteres['limite'])) {
$numero_page = $criteres['numero_page'];
unset($criteres['numero_page']);
$taille_page = $criteres['limite'];
unset($criteres['limite']);
}
$criteres = $_GET ;
if (isset($criteres['numero_page']) && isset($criteres['limite'])) {
$numero_page = $criteres['numero_page'];
unset($criteres['numero_page']);
$taille_page = $criteres['limite'];
unset($criteres['limite']);
}
$debut = $taille_page*$numero_page ;