aboutsummaryrefslogtreecommitdiffstats
path: root/admin/comments.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2009-02-04 02:41:03 +0000
committerrvelices <rv-github@modusoptimus.com>2009-02-04 02:41:03 +0000
commite8dac75c400dea48b97fe72a60cf554f0123c280 (patch)
treeba665c8016dacfe7030ab2a8826d8c16363a21ff /admin/comments.php
parent06bccdfcc344d25aca27e59250dd93ba95929974 (diff)
- removed second parameter $type from function format_date
git-svn-id: http://piwigo.org/svn/trunk@3122 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/comments.php')
-rw-r--r--admin/comments.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/comments.php b/admin/comments.php
index f362f4043..bbd616982 100644
--- a/admin/comments.php
+++ b/admin/comments.php
@@ -139,7 +139,7 @@ SELECT c.id, c.image_id, c.date, c.author, c.content, i.path, i.tn_ext
INNER JOIN '.IMAGES_TABLE.' AS i
ON i.id = c.image_id
WHERE validated = \'false\'
- ORDER BY c.date DESC
+ ORDER BY c.date DESC
;';
$result = pwg_query($query);
while ($row = mysql_fetch_assoc($result))
@@ -160,7 +160,7 @@ while ($row = mysql_fetch_assoc($result))
'ID' => $row['id'],
'TN_SRC' => $thumb,
'AUTHOR' => trigger_event('render_comment_author', $row['author']),
- 'DATE' => format_date($row['date'],'mysql_datetime',true),
+ 'DATE' => format_date($row['date'], true),
'CONTENT' => trigger_event('render_comment_content',$row['content'])
)
);