Modification des valeurs par defaut

This commit is contained in:
Michael RICOIS 2011-02-10 16:34:16 +00:00
parent 360329d707
commit 168bd5d124

View File

@ -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; }