Browse Source

fixed custom filters

pull/40/head
Savetheinternet 13 years ago
parent
commit
4cbf5b91bf
  1. 4
      post.php

4
post.php

@ -403,7 +403,6 @@
$did_not_match = true;
break;
}
}
if(!isset($did_not_match)) {
// Matched filter!
if(isset($filter) && $filter['action'] == 'reject') {
@ -411,6 +410,9 @@
}
}
}
}
exit;
if($post['has_file']) {
if(!in_array($post['extension'], $config['allowed_ext']) && !in_array($post['extension'], $config['allowed_ext_files']))

Loading…
Cancel
Save