Browse Source

Optimize code when checking if locked.

pull/40/head
Savetheinternet 14 years ago
parent
commit
01bbe8fca7
  1. 5
      post.php

5
post.php

@ -101,11 +101,10 @@
// Check if thread is locked // Check if thread is locked
// but allow mods to post // but allow mods to post
if(!$OP && threadLocked($post['thread'])) { if(!$OP && (!$mod || $mod['type'] < MOD_POSTINLOCKED)) {
if(!$mod || $mod['type'] < MOD_POSTINLOCKED) { if(threadLocked($post['thread']))
error(ERROR_LOCKED); error(ERROR_LOCKED);
} }
}
if($post['has_file']) { if($post['has_file']) {
$size = $_FILES['file']['size']; $size = $_FILES['file']['size'];

Loading…
Cancel
Save