Index: schedule/Module/calendar.php
===================================================================
--- schedule/Module/calendar.php	(revision 16324)
+++ schedule/Module/calendar.php	(revision 16325)
@@ -125,13 +125,6 @@
 									{
 										
-											line=xmlhttp.responseText.split('\n');
-											for(row=0;row<line.length;row++)
-											{
-												rows=line[row].split(',');
-												val.push(rows[4]);
-												T.push(rows[0]);
-											}
-										
-										GraphData(val,T);
+											line[0]=xmlhttp.responseText.split('\n');
+											GraphData(line);
 									}
 								}
@@ -140,7 +133,7 @@
 								xmlhttp.send();
 							}
-							function GraphData(y,x)
+							function GraphData(data)
 							{
-								document.getElementById('data').innerHTML=x+""+y;
+								document.getElementById('data').innerHTML=data;
 							}
 							
