diff --git a/usr/local/www/firewall_schedule_edit.php b/usr/local/www/firewall_schedule_edit.php index f43068258a..5de6a27b87 100644 --- a/usr/local/www/firewall_schedule_edit.php +++ b/usr/local/www/firewall_schedule_edit.php @@ -243,11 +243,11 @@ function repeatExistingDays(){ } } -function daytogglerepeating(week,daypos,bExists){ +function daytogglerepeating(year,week,daypos,bExists){ var tempstr, daycell, dayoriginal = ""; for (j=1; j<=53; j++) { - tempstr = 'w' + j + 'p' + daypos; + tempstr = 'y' + year +'w' + j + 'p' + daypos; daycell = eval('document.getElementById(tempstr)'); dayoriginalpos = daysSelected.indexOf(tempstr); @@ -280,8 +280,15 @@ function daytoggle(id) { var bFoundValid = false; iddashpos = id.search("-"); + + var tempstryearpos = id.search("y"); + var tempstrweekpos = id.search("w"); var tempstrdaypos = id.search("p"); - var week = id.substring(1,tempstrdaypos); + + var year = id.substring(tempstryearpos + 1,tempstrweekpos); + year = parseInt(year); + + var week = id.substring(tempstrweekpos + 1,tempstrdaypos); week = parseInt(week); if (iddashpos == "-1") @@ -309,7 +316,7 @@ function daytoggle(id) { } else if (daycell.style.backgroundColor == "#F08080") // lightcoral { - daytogglerepeating(week,daypos,true); + daytogglerepeating(year,week,daypos,true); } else //color is white cell { @@ -320,7 +327,7 @@ function daytoggle(id) { else { daycell.style.backgroundColor = "#F08080"; // lightcoral - daytogglerepeating(week,daypos,false); + daytogglerepeating(year,week,daypos,false); } daysSelected += id + ","; } @@ -330,7 +337,7 @@ function daytoggle(id) { { //we found an invalid cell when column was clicked, move up to the next week week++; - tempstr = "w" + week + "p" + daypos; + tempstr = "y" + year + "w" + week + "p" + daypos; idmod = tempstr; } } @@ -842,13 +849,13 @@ EOD; - - - - - - - + + + + + + + "; } if ($firstdayofmonth == $positioncounter){?> - + "; } elseif ($firstdayprinted == TRUE && $daycounter <= $numberofdays){?> - + ";