diff options
author | rvelices <rv-github@modusoptimus.com> | 2009-02-04 02:42:17 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2009-02-04 02:42:17 +0000 |
commit | 52281b5f44f000ea3b10c32a7039a32669d0b47b (patch) | |
tree | 327dc0aed9a8174dfa61ff0a9b8f367c01598f68 /comments.php | |
parent | 9428613b2da6132ef507e92461535283d48ecdc1 (diff) |
merge r3122 from trunk
- removed second parameter $type from function format_date
git-svn-id: http://piwigo.org/svn/branches/2.0@3123 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | comments.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comments.php b/comments.php index 3ec5f273d..3b637e7f8 100644 --- a/comments.php +++ b/comments.php @@ -364,7 +364,7 @@ SELECT id, name, permalink, uppercats 'TN_SRC' => $thumbnail_src, 'ALT' => $name, 'AUTHOR' => trigger_event('render_comment_author', $author), - 'DATE'=>format_date($comment['date'],'mysql_datetime',true), + 'DATE'=>format_date($comment['date'], true), 'CONTENT'=>trigger_event('render_comment_content',$comment['content']), ); |