aboutsummaryrefslogtreecommitdiffstats
path: root/admin/comments.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2014-07-07 21:36:23 +0000
committerrvelices <rv-github@modusoptimus.com>2014-07-07 21:36:23 +0000
commita7e57cf852cdea395c5f6e75fdd82e3941383acb (patch)
treebeb40712d7392163ad9c80a97577fddf90d51332 /admin/comments.php
parent5dac760ce7bb460b0e1877de6686cf8c7c5f4cb6 (diff)
feature 2807: fix bugs on comments format_date
git-svn-id: http://piwigo.org/svn/trunk@28995 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/comments.php')
-rw-r--r--admin/comments.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/comments.php b/admin/comments.php
index a30018260..e00889d7a 100644
--- a/admin/comments.php
+++ b/admin/comments.php
@@ -57,7 +57,7 @@ if (!empty($_POST))
{
include_once( PHPWG_ROOT_PATH .'include/functions_comment.inc.php' );
check_input_parameter('comments', $_POST, true, PATTERN_ID);
-
+
if (isset($_POST['validate']))
{
validate_user_comment($_POST['comments']);
@@ -186,7 +186,7 @@ while ($row = pwg_db_fetch_assoc($result))
'path'=>$row['path'],
)
);
- if (empty($row['author_id']))
+ if (empty($row['author_id']))
{
$author_name = $row['author'];
}
@@ -201,7 +201,7 @@ while ($row = pwg_db_fetch_assoc($result))
'ID' => $row['id'],
'TN_SRC' => $thumb,
'AUTHOR' => trigger_change('render_comment_author', $author_name),
- 'DATE' => format_date($row['date'], true),
+ 'DATE' => format_date($row['date']).' '.substr($row['date'],11,4),
'CONTENT' => trigger_change('render_comment_content',$row['content']),
'IS_PENDING' => ('false' == $row['validated']),
)