Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 2498 → Rev 2499

/branches/v2.8-houe/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';