Subversion Repositories Applications.referentiel

Rev

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

Rev 45 Rev 51
Line 1200... Line 1200...
1200
		}
1200
		}
Line 1201... Line 1201...
1201
		
1201
		
1202
		// Recercherche des erreurs
1202
		// Recercherche des erreurs
1203
		$champs_erreur = array(); 
1203
		$champs_erreur = array(); 
1204
		foreach ($champs_attendus as $champ_attendu) {
1204
		foreach ($champs_attendus as $champ_attendu) {
-
 
1205
			list($champ_attendu_nom, $champ_attendu_type_taille) = explode('=', trim($champ_attendu));
1205
			list($champ_attendu_nom, $champ_attendu_type) = explode('=', trim($champ_attendu));
1206
			list($champ_attendu_type, $champ_attendu_taille) = explode('|', trim($champ_attendu_type_taille));
1206
 
1207
			
1207
			if (isset($champs_presents[$champ_attendu_nom])) {
1208
			if (isset($champs_presents[$champ_attendu_nom])) {
Line 1208... Line 1209...
1208
				$champs_present_type = $champs_presents[$champ_attendu_nom];
1209
				$champs_present_type = $champs_presents[$champ_attendu_nom];
1209
				
1210