date don't change correctly in the view list (bug #973) fixed

This commit is contained in:
Bjoern Schiessle 2012-06-22 11:30:40 +02:00
parent ba2d203a54
commit 8c28aec664
1 changed files with 2 additions and 0 deletions

View File

@ -705,10 +705,12 @@ function ListView(element, calendar) {
if (delta) {
if (delta < 0){
addDays(t.start, -7);
addDays(t.end, -7);
if (!opt('weekends')) {
skipWeekend(t.start, delta < 0 ? -1 : 1);
}
}else{
addDays(t.start, 7);
addDays(t.end, 7);
if (!opt('weekends')) {
skipWeekend(t.end, delta < 0 ? -1 : 1);