aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/posting.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r--phpBB/posting.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index e585b73e7d..cf27952e12 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -850,7 +850,7 @@ if ($submit || $preview || $refresh)
include_once($phpbb_root_path . 'includes/functions_admin.' . $phpEx);
$template->assign_vars(array(
- 'S_FORUM_SELECT' => make_forum_select(false, false, false, true, true),
+ 'S_FORUM_SELECT' => make_forum_select(false, false, false, true, true, true),
'S_UNGLOBALISE' => true)
);
@@ -859,6 +859,12 @@ if ($submit || $preview || $refresh)
}
else
{
+ if (!$auth->acl_get('f_post', $to_forum_id))
+ {
+ // This will only be triggered if the user tried to trick the forum.
+ trigger_error('NOT_AUTHORIZED');
+ }
+
$forum_id = $to_forum_id;
}
}