Permissions on mod controls when making a new thread
This commit is contained in:
parent
d68adefd3b
commit
567d37c62e
3
post.php
3
post.php
@ -94,6 +94,9 @@
|
|||||||
|
|
||||||
$post['sticky'] = $OP && isset($_POST['sticky']);
|
$post['sticky'] = $OP && isset($_POST['sticky']);
|
||||||
$post['locked'] = $OP && isset($_POST['lock']);
|
$post['locked'] = $OP && isset($_POST['lock']);
|
||||||
|
|
||||||
|
if($post['sticky'] && $mod['type'] < MOD_STICKY) error(ERROR_NOACCESS);
|
||||||
|
if($post['locked'] && $mod['type'] < MOD_LOCK) error(ERROR_NOACCESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
if($post['has_file']) {
|
if($post['has_file']) {
|
||||||
|
Loading…
Reference in New Issue
Block a user