CC-4053: Widget not showing correct day on Sunday
- fixed weekly widget - also fixed today's show widget
This commit is contained in:
parent
bc569462ee
commit
7342ea4d4b
2 changed files with 20 additions and 12 deletions
|
@ -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');
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue