Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1512 Rev 1527
Line 195... Line 195...
195
			if (!empty($obs['image_nom'])) {
195
			if (!empty($obs['image_nom'])) {
196
				$imgAAjouter = array();
196
				$imgAAjouter = array();
197
				$imgAAjouter['id_utilisateur'] = $id_utilisateur;
197
				$imgAAjouter['id_utilisateur'] = $id_utilisateur;
198
				$imgAAjouter['id_obs'] = $ordreObs;
198
				$imgAAjouter['id_obs'] = $ordreObs;
199
				$imgAAjouter['nom'] = $obs['image_nom'];
199
				$imgAAjouter['nom'] = $obs['image_nom'];
200
				$imgAAjouter['b64'] = $obs['image_b64'];
200
				$imgAAjouter['b64'] = isset($obs['image_b64']) ? $obs['image_b64'] : array();
201
				$this->debug[] = 'Contient B64 : '.(empty($obs['image_b64']) ? 'non' : 'oui');
201
				$this->debug[] = 'Contient B64 : '.(empty($obs['image_b64']) ? 'non' : 'oui');
202
			}
202
			}
203
		}
203
		}
Line 204... Line 204...
204
		
204