mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-05 04:52:47 +02:00
fix picture modify create date for days/months on two digits starting with 0
git-svn-id: http://piwigo.org/svn/trunk@24946 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -373,8 +373,8 @@ ksort($month_list);
|
||||
|
||||
$template->assign(
|
||||
array(
|
||||
'DATE_CREATION_DAY_VALUE' => $day,
|
||||
'DATE_CREATION_MONTH_VALUE' => $month,
|
||||
'DATE_CREATION_DAY_VALUE' => (int)$day,
|
||||
'DATE_CREATION_MONTH_VALUE' => (int)$month,
|
||||
'DATE_CREATION_YEAR_VALUE' => $year,
|
||||
'DATE_CREATION_TIME_VALUE' => $time,
|
||||
'month_list' => $month_list,
|
||||
|
||||
Reference in New Issue
Block a user