From c1a40e9de09a87b248da53d1528f9bc6d85eba0e Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Mon, 28 Mar 2011 03:00:54 +1100 Subject: [PATCH] Stupid bug when posting --- post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post.php b/post.php index 18f4b902..16dddcd8 100644 --- a/post.php +++ b/post.php @@ -374,7 +374,7 @@ } if(!isset($did_not_match)) { // Matched filter! - if($filter['action'] == 'reject') { + if(isset($filter) && $filter['action'] == 'reject') { error($filter['message']); } }