- send status code 403 when attempt to enter a comment, but comments are disabled

- added trigger wether we should increment hit count

git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2154 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices
2007-10-29 23:10:31 +00:00
parent eab34bed9c
commit 56a533f3cb
2 changed files with 13 additions and 6 deletions
+8 -4
View File
@@ -55,7 +55,7 @@ if ( $page['show_comments'] and isset( $_POST['content'] ) )
);
include_once(PHPWG_ROOT_PATH.'include/functions_comment.inc.php');
$comment_action = insert_user_comment($comm, @$_POST['key'], $infos );
switch ($comment_action)
@@ -65,7 +65,7 @@ if ( $page['show_comments'] and isset( $_POST['content'] ) )
case 'validate':
array_push( $infos, $lang['comment_added']);
break;
case 'reject':
case 'reject':
set_status_header(403);
array_push($infos, l10n('comment_not_added') );
break;
@@ -86,7 +86,11 @@ if ( $page['show_comments'] and isset( $_POST['content'] ) )
array_merge($comm, array('action'=>$comment_action) )
);
}
elseif ( isset($_POST['content']) )
{
set_status_header(403);
die('ugly spammer');
}
if ($page['show_comments'])
{
@@ -136,7 +140,7 @@ SELECT id,author,date,image_id,content
$template->assign_block_vars(
'comments.comment',
array(
'COMMENT_AUTHOR' => trigger_event('render_comment_author',
'COMMENT_AUTHOR' => trigger_event('render_comment_author',
empty($row['author'])
? $lang['guest']
: $row['author']),