Subversion Repositories eFlore/Applications.del

Rev

Rev 2157 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2157 Rev 2159
Line 133... Line 133...
133
	 * Met à jour del_utilisateur_infos en fonction des informations
133
	 * Met à jour del_utilisateur_infos en fonction des informations
134
	 * contenues par le jeton SSO; si ce dernier est vide, ne fait
134
	 * contenues par le jeton SSO; si ce dernier est vide, ne fait
135
	 * rien (boulette-proof)
135
	 * rien (boulette-proof)
136
	 */
136
	 */
137
	protected function mettreAJourProfilLocal() {
137
	protected function mettreAJourProfilLocal() {
138
		echo "Mise à jour profil local !!";
138
		//echo "Mise à jour profil local !!";
139
		if ($this->jetonDecode != null && $this->jetonDecode['id'] != '') {
139
		if ($this->jetonDecode != null && $this->jetonDecode['id'] != '') {
140
			$requete = 'UPDATE del_utilisateur_infos SET'
140
			$requete = 'UPDATE del_utilisateur_infos SET'
141
				. ' nom = ' . $this->bdd->proteger($this->jetonDecode['nom']) . ', '
141
				. ' nom = ' . $this->bdd->proteger($this->jetonDecode['nom']) . ', '
142
				. ' intitule = ' . $this->bdd->proteger($this->jetonDecode['intitule']) . ', '
142
				. ' intitule = ' . $this->bdd->proteger($this->jetonDecode['intitule']) . ', '
143
				. ' prenom = ' . $this->bdd->proteger($this->jetonDecode['prenom'])
143
				. ' prenom = ' . $this->bdd->proteger($this->jetonDecode['prenom'])