From 56cfd9b3acec2b2fa1efe304015b93038abce249 Mon Sep 17 00:00:00 2001 From: mistic100 Date: Tue, 5 Jun 2012 19:51:54 +0000 Subject: bug:2645 author field is kept when comment not validated git-svn-id: http://piwigo.org/svn/trunk@15570 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/picture_comment.inc.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'include/picture_comment.inc.php') diff --git a/include/picture_comment.inc.php b/include/picture_comment.inc.php index b6680aaf8..b4ae4c996 100644 --- a/include/picture_comment.inc.php +++ b/include/picture_comment.inc.php @@ -240,17 +240,19 @@ SELECT if ($show_add_comment_form) { $key = get_ephemeral_key(3, $page['image_id']); - $content = ''; + $content = $author = ''; if ('reject'===@$comment_action) { $content = htmlspecialchars( stripslashes($comm['content']) ); + $author = htmlspecialchars( stripslashes($comm['author']) ); } $template->assign('comment_add', array( 'F_ACTION' => $url_self, 'KEY' => $key, 'CONTENT' => $content, - 'SHOW_AUTHOR' => !is_classic_user() + 'SHOW_AUTHOR' => !is_classic_user(), + 'AUTHOR' => $author , )); } } -- cgit v1.2.3