Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 2499 → Rev 2500

/trunk/widget/modules/saisie/Saisie.php
42,7 → 42,11
$retour = null;
extract($this->parametres);
 
$this->projet = (isset($projet) && trim($projet) != "") ? explode(',', $projet)[0] : self::PROJET_DEFAUT;
$this->projet = self::PROJET_DEFAUT;
if (isset($projet) && trim($projet) != "") {
$projets = explode(',', $projet);
$this->projet = $projets[0];
}
$this->chargerConfigProjet();
 
$service = isset($service) ? $service : 'widget';