Subversion Repositories eFlore/Applications.cel

Rev

Rev 1773 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1773 Rev 1793
Line 222... Line 222...
222
 
222
 
223
	$head = champsLongToShort(fgetcsv($out));
223
	$head = champsLongToShort(fgetcsv($out));
224
	while ($line--) fgetcsv($out);
224
	while ($line--) fgetcsv($out);
225
	$l = fgetcsv($out);
225
	$l = fgetcsv($out);
-
 
226
	fclose($out);
226
	fclose($out);
227
	if(!$l) return FALSE;
227
	return array_combine($head, $l);
228
	return array_combine($head, $l);
Line 228... Line 229...
228
}
229
}