From e4bd324801d881f29d342e4826324c193d88d77d Mon Sep 17 00:00:00 2001 From: Felix Favre Date: Wed, 26 Aug 2015 15:00:10 +0200 Subject: changed all y-m-d date formats to Y-m-d date formats part of #202 --- includes/view/Shifts_view.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'includes/view/Shifts_view.php') diff --git a/includes/view/Shifts_view.php b/includes/view/Shifts_view.php index b0628a3b..c67ca740 100644 --- a/includes/view/Shifts_view.php +++ b/includes/view/Shifts_view.php @@ -87,7 +87,7 @@ function Shift_view($shift, $shifttype, $room, $shift_admin, $angeltypes_source, div('col-sm-3 col-xs-6', [ '

' . _('Start') . '

', '

', - glyph('calendar') . date('y-m-d', $shift['start']), + glyph('calendar') . date('Y-m-d', $shift['start']), '
', glyph('time') . date('H:i', $shift['start']), '

' @@ -95,7 +95,7 @@ function Shift_view($shift, $shifttype, $room, $shift_admin, $angeltypes_source, div('col-sm-3 col-xs-6', [ '

' . _('End') . '

', '

', - glyph('calendar') . date('y-m-d', $shift['end']), + glyph('calendar') . date('Y-m-d', $shift['end']), '
', glyph('time') . date('H:i', $shift['end']), '

' -- cgit v1.2.3-54-g00ecf