diff options
author | rvelices <rv-github@modusoptimus.com> | 2007-10-29 23:39:41 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2007-10-29 23:39:41 +0000 |
commit | 831694b4d1a1e93b5ed6a8e1e4a0c80d21df95cd (patch) | |
tree | 9a31419b292aad362bacbb83773c90d8060545e7 /include/picture_comment.inc.php | |
parent | f33617a5b85fd9c842e4e415aebe9dd213595783 (diff) |
- send status code 403 when attempt to enter a user comment, but comments are disabled
- don't increase hit count when a comment is posted
- remove the check of user ip agains spamhaus.org when a comment is entered (my conclusion is that is useless)
git-svn-id: http://piwigo.org/svn/trunk@2155 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/picture_comment.inc.php')
-rw-r--r-- | include/picture_comment.inc.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/picture_comment.inc.php b/include/picture_comment.inc.php index 971336fba..1c6968e17 100644 --- a/include/picture_comment.inc.php +++ b/include/picture_comment.inc.php @@ -87,7 +87,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']) { |