Actions
Anomalie #732
ferméGalette v0.7.6. Fonction "Exporter en CSV" génère un fichier vide.
Début:
22/10/2013
Echéance:
% réalisé:
100%
Temps estimé:
Version utilisée:
Vote:
Description
Dans la page "Gestion des membres", la fonction "Exporter en CSV" génère le fichier filtered_memberslist.csv vide excepté la ligne des champs. Même remarque pour la version 0.7.7dev.
Actions
#1
Mis à jour par Johan Cwiklinski il y a environ 11 ans
- Catégorie mis à Files generation
- Assigné à mis à Johan Cwiklinski
- Statut changé de Nouveau à In Progress
Le correctif :
diff --git a/galette/lib/Galette/IO/CsvOut.php b/galette/lib/Galette/IO/CsvOut.php
index 2990d93..6559038 100644
--- a/galette/lib/Galette/IO/CsvOut.php
+++ b/galette/lib/Galette/IO/CsvOut.php
@@ -128,7 +128,7 @@ class CsvOut extends Csv
foreach ( $this->_rs as $row ) {
$elts = array();
- if ( is_array($row) > 0 ) {
+ if ( is_array($row) || is_object($row) ) {
foreach ($row as $k => $v) {
$elts[] = $this->quote . str_replace(
$this->quote, $this->escaped, $v
Actions
#2
Mis à jour par Roland Telle il y a environ 11 ans
Johan Cwiklinski a écrit :
Le correctif :
[...]
Le correctif fonctionne parfaitement ! Merci ;-)
Actions
#3
Mis à jour par Johan Cwiklinski il y a environ 11 ans
- Statut changé de In Progress à Résolu
- % réalisé changé de 0 à 100
Appliqué par commit 746f3d90558ea66ec69f901db9192f962e1df1bb.
Actions