Subversion Repositories eFlore/Projets.eflore-projets

Compare Revisions

Ignore whitespace Rev 106 → Rev 107

/trunk/scripts/bibliotheque/EfloreScript.php
78,11 → 78,13
return $contenu;
}
 
protected function stopperLaBoucle($limite) {
protected function stopperLaBoucle($limite = false) {
$stop = false;
static $ligneActuelle = 1;
if ($limite == $ligneActuelle++) {
$stop = true;
if ($limite) {
static $ligneActuelle = 1;
if ($limite == $ligneActuelle++) {
$stop = true;
}
}
return $stop;
}