Index: schedule/Module/calendar.php
===================================================================
--- schedule/Module/calendar.php	(revision 16320)
+++ schedule/Module/calendar.php	(revision 16321)
@@ -108,4 +108,5 @@
 							//var rows;
 							var val = [];
+							var T = [];
 							for( src=0;src<source.length;src++)
 							{
@@ -128,6 +129,7 @@
 											rows=line[row].split(',');
 											val.push(rows[4]);
+											T.push(rows[0]);
 										}
-										GraphData(val);
+										GraphData(val,T);
 									}
 								}
@@ -136,7 +138,7 @@
 								xmlhttp.send();
 							}
-							function GraphData(x)
+							function GraphData(y,x)
 							{
-								document.getElementById('data').innerHTML=x;
+								document.getElementById('data').innerHTML=x+""+y;
 							}
 							
