From 168bd5d1242f195ad82246e83b8e797313e84761 Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Thu, 10 Feb 2011 16:34:16 +0000 Subject: [PATCH] Modification des valeurs par defaut --- library/WsScore/Entreprise/v0.2/Entreprise.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/WsScore/Entreprise/v0.2/Entreprise.php b/library/WsScore/Entreprise/v0.2/Entreprise.php index b549c8f1..2f76115a 100644 --- a/library/WsScore/Entreprise/v0.2/Entreprise.php +++ b/library/WsScore/Entreprise/v0.2/Entreprise.php @@ -461,7 +461,7 @@ class Entreprise extends WsScore * @param integer $nbRep * @return AnnoncesReturn */ - public function getAnnonces($siren, $filtre = 0, $idAnn = 0, $position = 0, $nbRep = 20) + public function getAnnonces($siren, $filtre = 0, $idAnn = 0, $position = 0, $nbRep = 100) { $this->authenticate(); @@ -469,7 +469,7 @@ class Entreprise extends WsScore if (empty($filtre)) { $filtre = 0; } if (empty($idAnn)) { $idAnn = 0; } if (empty($position)) { $position = 0; } - if (empty($nbRep)) { $nbRep = 20; } + if (empty($nbRep)) { $nbRep = 100; } //Valeur max if($nbRep > 200) { $nbRep = 200; }