diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-11-21 23:33:51 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-11-21 23:33:51 +0100 |
commit | 47d3865fa6097e5c1925ef3af96ec124e8c78d68 (patch) | |
tree | 78515aae09223207d7bacdbc2cc568984d05ff28 | |
parent | dd3e440cefb2fa194feeea2ee998b4858342bb65 (diff) | |
parent | 2e2ab7b485f76ab4000b5d8c47c846ff44c10a33 (diff) | |
download | forums-47d3865fa6097e5c1925ef3af96ec124e8c78d68.tar forums-47d3865fa6097e5c1925ef3af96ec124e8c78d68.tar.gz forums-47d3865fa6097e5c1925ef3af96ec124e8c78d68.tar.bz2 forums-47d3865fa6097e5c1925ef3af96ec124e8c78d68.tar.xz forums-47d3865fa6097e5c1925ef3af96ec124e8c78d68.zip |
Merge branch 'develop-ascraeus' into develop
-rw-r--r-- | phpBB/posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index 4c32276d17..dda7455845 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -1161,7 +1161,7 @@ if ($submit || $preview || $refresh) break; } - if (!$auth->acl_get($auth_option, $forum_id)) + if ($auth_option != '' && !$auth->acl_get($auth_option, $forum_id)) { // There is a special case where a user edits his post whereby the topic type got changed by an admin/mod. // Another case would be a mod not having sticky permissions for example but edit permissions. |