Subversion Repositories eFlore/Applications.cel

Rev

Rev 2500 | Rev 2688 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2500 Rev 2577
Line 43... Line 43...
43
		extract($this->parametres);
43
		extract($this->parametres);
Line 44... Line 44...
44
 
44
 
45
		$this->projet = self::PROJET_DEFAUT;
45
		$this->projet = self::PROJET_DEFAUT;
46
		if (isset($projet) && trim($projet) != "") {
46
		if (isset($projet) && trim($projet) != "") {
47
			$projets = explode(',', $projet);
47
			$projets = explode(',', $projet);
48
			$this->projet = $projets[0];
48
			$this->projet = strtolower($projets[0]);
49
		}
49
		}
Line 50... Line 50...
50
		$this->chargerConfigProjet();
50
		$this->chargerConfigProjet();
51
 
51