Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 2303 → Rev 2304

/branches/v2.4-fourche/jrest/lib/FormateurGroupeColonne.php
714,12 → 714,12
// Attention la fonction suppose que l'on ait fait appel à baseflor_preload avant
// d'être appelée
if(! $obs['nom_ret_nn']) {
$ligne = array_merge($ligne, array_fill(0, count(self::$baseflor_col), ""));
$ligne = array_merge($ligne, array_fill(0, count(self::$baseflor_col), " "));
return;
}
 
if(! self::referenceTableExiste()) {
$ligne = array_merge($ligne, array_fill(0, count(self::$baseflor_col), ""));
$ligne = array_merge($ligne, array_fill(0, count(self::$baseflor_col), " "));
return;
}
 
732,7 → 732,7
$ligne = array_merge($ligne, self::$cache['getBaseflor'][$cache_id]);
return;
} else {
$ligne = array_merge($ligne, array_fill(0, count(self::$baseflor_col), ""));
$ligne = array_merge($ligne, array_fill(0, count(self::$baseflor_col), " "));
return;
}
}