[Fusionforge-commits] FusionForge branch 6.0 updated. 24b757f0aa8500b39c77e05870b6b9f6709197d4

Franck Villaume nerville at libremir.placard.fr.eu.org
Sun May 24 17:56:23 CEST 2015


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  24b757f0aa8500b39c77e05870b6b9f6709197d4 (commit)
      from  4ac208d21703ec401742ecdb79cf3a0c804cfe40 (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 -----------------------------------------------------------------
commit 24b757f0aa8500b39c77e05870b6b9f6709197d4
Author: Franck Villaume <franck.villaume at trivialdev.com>
Date:   Sun May 24 17:56:00 2015 +0200

    fix wrong chartid

diff --git a/src/common/reporting/report_utils.php b/src/common/reporting/report_utils.php
index 33ac43c..6f4efa6 100644
--- a/src/common/reporting/report_utils.php
+++ b/src/common/reporting/report_utils.php
@@ -356,7 +356,7 @@ function trackeract_graph($group_id, $area, $SPAN, $start, $end, $atid) {
 		plot'.$chartid.'.replot();
 		});'."\n";
 	echo '//]]></script>';
-	echo $HTML->html_chartid($chartid, _('Tracker Activity').' ('.date(_('Y-m-d'), $start).' - '.date(_('Y-m-d'), $end).')');
+	echo $HTML->html_chartid('chart'.$chartid, _('Tracker Activity').' ('.date(_('Y-m-d'), $start).' - '.date(_('Y-m-d'), $end).')');
 	return true;
 }
 
@@ -413,7 +413,7 @@ function trackerpie_graph($group_id, $area, $SPAN, $start, $end, $atid) {
 				plot'.$chartid.'.replot( { resetAxes: true } );
 			});'."\n";
 		echo '//]]></script>';
-		echo $HTML->html_chartid($chartid, $areaname.' ('.date(_('Y-m-d'), $start).' - '.date(_('Y-m-d'), $end).')');
+		echo $HTML->html_chartid('chart'.$chartid, $areaname.' ('.date(_('Y-m-d'), $start).' - '.date(_('Y-m-d'), $end).')');
 	} else {
 		echo $HTML->information(_('No data to display'));
 	}

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

Summary of changes:
 src/common/reporting/report_utils.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/common/reporting/report_utils.php b/src/common/reporting/report_utils.php
index 33ac43c..6f4efa6 100644
--- a/src/common/reporting/report_utils.php
+++ b/src/common/reporting/report_utils.php
@@ -356,7 +356,7 @@ function trackeract_graph($group_id, $area, $SPAN, $start, $end, $atid) {
 		plot'.$chartid.'.replot();
 		});'."\n";
 	echo '//]]></script>';
-	echo $HTML->html_chartid($chartid, _('Tracker Activity').' ('.date(_('Y-m-d'), $start).' - '.date(_('Y-m-d'), $end).')');
+	echo $HTML->html_chartid('chart'.$chartid, _('Tracker Activity').' ('.date(_('Y-m-d'), $start).' - '.date(_('Y-m-d'), $end).')');
 	return true;
 }
 
@@ -413,7 +413,7 @@ function trackerpie_graph($group_id, $area, $SPAN, $start, $end, $atid) {
 				plot'.$chartid.'.replot( { resetAxes: true } );
 			});'."\n";
 		echo '//]]></script>';
-		echo $HTML->html_chartid($chartid, $areaname.' ('.date(_('Y-m-d'), $start).' - '.date(_('Y-m-d'), $end).')');
+		echo $HTML->html_chartid('chart'.$chartid, $areaname.' ('.date(_('Y-m-d'), $start).' - '.date(_('Y-m-d'), $end).')');
 	} else {
 		echo $HTML->information(_('No data to display'));
 	}


hooks/post-receive
-- 
FusionForge



More information about the Fusionforge-commits mailing list