This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".

The branch, 6.0 has been updated
       via  cac31a6550161623464d6f5116f1afe1807b75b8 (commit)
      from  3728caf4d743533c48d62666ce082dff9edd7a1c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=cac31a6550161623464d6f5116f1afe1807b75b8

commit cac31a6550161623464d6f5116f1afe1807b75b8
Author: Franck Villaume <[email protected]>
Date:   Tue Aug 16 19:28:33 2016 +0200

    fix [#828] fix downloadcsv missing vote values

diff --git a/src/CHANGES b/src/CHANGES
index 69c8cc9..8fb7b09 100644
--- a/src/CHANGES
+++ b/src/CHANGES
@@ -6,6 +6,7 @@ FusionForge 6.0.5:
 * Project Task: fix CSV import [#823]: add missing translation, add missing 
category in no header import,
                 fix start/end date format description (TrivialDev)
 * Tracker: fix artifact deletion with votes [#819] (TrivialDev)
+* Tracker: fix downloadcsv missing vote values [#828] (TrivialDev)
 
 FusionForge 6.0.4:
 * Account Management System: fix sysCreateUser for UNIX: unix_gid dropped 
(TrivialDev)
diff --git a/src/common/tracker/actions/downloadcsv.php 
b/src/common/tracker/actions/downloadcsv.php
index 280d92c..1519891 100644
--- a/src/common/tracker/actions/downloadcsv.php
+++ b/src/common/tracker/actions/downloadcsv.php
@@ -88,7 +88,7 @@ for ($i=0; $i<count($at_arr); $i++) {
        $update_date = $at_arr[$i]->getLastModifiedDate() ? date(_('Y-m-d 
H:i'),$at_arr[$i]->getLastModifiedDate()) : '';
        $close_date  = $at_arr[$i]->getCloseDate()? date(_('Y-m-d 
H:i'),$at_arr[$i]->getCloseDate()): '';
 
-       $at_arr[$i]->getVotes();
+       $votes = $at_arr[$i]->getVotes();
        echo $at_arr[$i]->getID().$sep.
                $at_arr[$i]->getStatusID().$sep.
                '"'.$at_arr[$i]->getStatusName().'"'.$sep.

-----------------------------------------------------------------------

Summary of changes:
 src/CHANGES                                | 1 +
 src/common/tracker/actions/downloadcsv.php | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
FusionForge

_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits

Reply via email to