Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 2309 → Rev 2310

/branches/v2.4-fourche/jrest/lib/FormateurGroupeColonne.php
715,7 → 715,7
// d'être appelée
if(!$obs['nom_ret_nn'] || !self::referenceTableExiste()) {
$ligne = array_merge($ligne, array_fill_keys(self::$baseflor_col, ""));
$ligne = array_merge($ligne, array_fill_keys(self::$baseflor_col, " "));
return;
}
 
726,9 → 726,14
// @ car getBaseflor[] n'est peut-être pas encore initialisé
if(@array_key_exists($cache_id, self::$cache['getBaseflor'])) {
$ligne = array_merge($ligne, self::$cache['getBaseflor'][$cache_id]);
foreach(self::$baseflor_col as $col_baseflor) {
if(!array_key_exists($col_baseflor, $ligne)) {
$ligne[$col_baseflor] = " ";
}
}
return;
} else {
$ligne = array_merge($ligne, array_fill_keys(self::$baseflor_col, ""));
$ligne = array_merge($ligne, array_fill_keys(self::$baseflor_col, " "));
return;
}
}