CC-4053: Widget not showing correct day on Sunday

- fixed weekly widget
- also fixed today's show widget
This commit is contained in:
james 2012-07-03 13:17:48 -04:00
parent bc569462ee
commit 7342ea4d4b
2 changed files with 20 additions and 12 deletions

View file

@ -53,7 +53,8 @@ class Application_Common_DateHelper
*/
function getWeekStartDate()
{
$startDate = date('w') == 0 ? date('Y-m-d') : date('Y-m-d', strtotime('monday this week'));
// our week starts on monday, but php week starts on sunday.
$startDate = date('w') == 0 ? date('Y-m-d', strtotime('monday last week')) : date('Y-m-d', strtotime('monday this week'));
$startDateTime = new DateTime($startDate);
return $startDateTime->format('Y-m-d H:i:s');
}