aboutsummaryrefslogtreecommitdiffstats
path: root/include/picture_comment.inc.php
diff options
context:
space:
mode:
authormistic100 <mistic@piwigo.org>2011-12-19 17:08:49 +0000
committermistic100 <mistic@piwigo.org>2011-12-19 17:08:49 +0000
commit4bbd5f66492997cc49276034949a5f984ef6351d (patch)
tree39ff197c1c7c0b667943ea0a0296ff7c63a9417e /include/picture_comment.inc.php
parent5470df353ab58a5a4664453f2eb29febed15fbb6 (diff)
feature:2538 transmits messages after comment edition trough SESSION (no more ugly url displayed, avoid some minor bugs)
git-svn-id: http://piwigo.org/svn/trunk@12767 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/picture_comment.inc.php')
-rw-r--r--include/picture_comment.inc.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/picture_comment.inc.php b/include/picture_comment.inc.php
index 0273e7b71..70e2c7e95 100644
--- a/include/picture_comment.inc.php
+++ b/include/picture_comment.inc.php
@@ -228,16 +228,11 @@ SELECT
if ($show_add_comment_form)
{
$key = get_ephemeral_key(3, $page['image_id']);
- $content = '';
- if ('reject'===@$comment_action)
- {
- $content = htmlspecialchars( stripslashes($comm['content']) );
- }
$template->assign('comment_add',
array(
'F_ACTION' => $url_self,
'KEY' => $key,
- 'CONTENT' => $content,
+ 'CONTENT' => null,
'SHOW_AUTHOR' => !is_classic_user()
));
}