[Vtigercrm-commits] [vtiger-commits] r7425 - /vtigercrm/trunk/modules/Dashboard/Entity_charts.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Thu Jun 22 03:44:40 EDT 2006
Author: saraj
Date: Thu Jun 22 01:44:37 2006
New Revision: 7425
Log:
delimiter has been changed from , to :: as , causes issue in graph
Modified:
vtigercrm/trunk/modules/Dashboard/Entity_charts.php
Modified: vtigercrm/trunk/modules/Dashboard/Entity_charts.php
==============================================================================
--- vtigercrm/trunk/modules/Dashboard/Entity_charts.php (original)
+++ vtigercrm/trunk/modules/Dashboard/Entity_charts.php Thu Jun 22 01:44:37 2006
@@ -233,12 +233,12 @@
$name=$name_val;
}
//Passing name to graph
- if($mod_name_val!="") $mod_name_val.=",$name";
+ if($mod_name_val!="") $mod_name_val.="::$name";
else $mod_name_val="$name";
//Passing count to graph
- if($mod_cnt_val!="") $mod_cnt_val.=",$mod_count_val";
+ if($mod_cnt_val!="") $mod_cnt_val.="::$mod_count_val";
else $mod_cnt_val="$mod_count_val";
if($module!="")
@@ -259,7 +259,7 @@
if($i==0)
$bar_target_val .=$link_val;
else
- $bar_target_val .=",".$link_val;
+ $bar_target_val .="::".$link_val;
}
//The data as per given date
if($i==0)
More information about the vtigercrm-commits
mailing list