* JSCalendar: fixed week containing 4th Jan is shown as 52th instead 1st week, if week starts on sunday is selected

JSCalendar shows iso8601 week numbers as used eg. in Europe, which are defined for weeks starting on Monday, JSCal used first displayed day (not Monday) to calculate the week number
fix now always uses the Monday to set the week number
US, Canada and middle east uses uses a different week numbering schema than iso8601, which is currently NOT supported by JSCalendar or EGroupware!
This commit is contained in:
Ralf Becker 2011-01-05 02:40:06 +00:00
parent c0132e7ef7
commit 74a0ff602c
2 changed files with 1797 additions and 0 deletions

View File

@ -530,10 +530,12 @@ class egw extends egw_minimal
}
// call the asyncservice check_run function if it is not explicitly set to cron-only
//
/* not needed as rpm uses /etc/cron.d/egroupware
if (!$GLOBALS['egw_info']['server']['asyncservice']) // is default
{
ExecMethod('phpgwapi.asyncservice.check_run','fallback');
}
*/
$this->db->disconnect();
}
}

File diff suppressed because it is too large Load Diff