Browse Source

Fixed permissions typo in stickies

pull/40/head
Savetheinternet 14 years ago
parent
commit
cff02371ce
  1. 2
      mod.php

2
mod.php

@ -284,7 +284,7 @@
else
header('Location: ?/' . sprintf(BOARD_PATH, $boardName) . FILE_INDEX, true, REDIRECT_HTTP);
} elseif(preg_match('/^\/' . $regex['board'] . '(un)?sticky\/(\d+)$/', $query, $matches)) {
if($mod['type'] < MOD_DELETE) error(ERROR_NOACCESS);
if($mod['type'] < MOD_STICKY) error(ERROR_NOACCESS);
// Ban by post
$boardName = $matches[1];

Loading…
Cancel
Save