From 4ecb7f0e25dfc8698e2985ce0b621b961254266d Mon Sep 17 00:00:00 2001 From: grum Date: Sun, 9 Nov 2008 14:26:39 +0000 Subject: Two fields in the database [image table] are in the 'yyyy-mm-dd' format [date_metadata_update & date_creation] and for these fields the format_date function is called with a 'mysql_datetime' format value (so, the function is waiting for 'yyyy-mm-dd hh:mm:ss' date format) Made a call with the 'us' to resolve the problem git-svn-id: http://piwigo.org/svn/branches/2.0@2850 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/category_default.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/category_default.inc.php') diff --git a/include/category_default.inc.php b/include/category_default.inc.php index b46b8465c..02f8afd39 100644 --- a/include/category_default.inc.php +++ b/include/category_default.inc.php @@ -117,7 +117,7 @@ foreach ($pictures as $row) 'FILE_PATH' => $row['path'], 'FILE_POSTED' => format_date($row['date_available'], 'mysql_datetime'), 'FILE_CREATED' => (empty($row['date_creation'])) ? - '-': format_date($row['date_creation'], 'mysql_datetime'), + '-': format_date($row['date_creation'], 'us'), 'FILE_DESC' => (empty($row['comment'])) ? '-' : $row['comment'], 'FILE_AUTHOR' => (empty($row['author'])) ? '-' : $row['author'], 'FILE_HIT' => $row['hit'], @@ -125,7 +125,7 @@ foreach ($pictures as $row) 'FILE_WIDTH' => (empty($row['width'])) ? '-' : $row['width'], 'FILE_HEIGHT' => (empty($row['height'])) ? '-' : $row['height'], 'FILE_METADATE' => (empty($row['date_metadata_update'])) ? - '-': format_date($row['date_metadata_update'], 'mysql_datetime'), + '-': format_date($row['date_metadata_update'], 'us'), 'FILE_RATE' => (empty($row['rate'])) ? '-' : $row['rate'], 'FILE_HAS_HD' => ($row['has_high'] and $user['enabled_high']=='true') ? true:false, /* lack of include/functions_picture.inc.php */ -- cgit v1.2.3