Index: schedule/Module/calendar.php
===================================================================
--- schedule/Module/calendar.php	(revision 16128)
+++ schedule/Module/calendar.php	(revision 16129)
@@ -233,17 +233,16 @@
 									};
 									var chart = new Highcharts.Chart(options);
-									for(var src=0;src<source.length;src++)
-									{
-										chart.addSeries({name:source[src], data:[]}); // created a series of data and add name of displayed source
-										for(var DataCnt=0;DataCnt<Data[src].length;DataCnt++)
+									
+										chart.addSeries({name:source[i], data:[]}); // created a series of data and add name of displayed source
+										for(var DataCnt=0;DataCnt<Data[i].length;DataCnt++)
 										{
 											
-											chart.series[src].addPoint({ // series[0] means index of zero in data;
-											x:Time[src][DataCnt], // Time
-											y:Data[src][DataCnt] // Value
+											chart.series[i].addPoint({ // series[0] means index of zero in data;
+											x:Time[i][DataCnt], // Time
+											y:Data[i][DataCnt] // Value
 											})
 											
 										}
-									}
+									
 								
 										
