Browse Source

Added IP address to flood filter

pull/40/head
Savetheinternet 13 years ago
parent
commit
3fa646868a
  1. 3
      post.php

3
post.php

@ -347,6 +347,9 @@
} elseif($condition == 'body') {
if(preg_match($value, $post['body_nomarkup']))
continue;
} elseif($condition == 'ip') {
if(preg_match($value, $_SERVER['REMOTE_ADDR']))
continue;
} elseif($condition == 'OP') {
// Am I OP?
if($value == $OP)

Loading…
Cancel
Save