mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge pull request #3127 from omniError/ticket/13323
[ticket/13323] empty auth option in posting.php
This commit is contained in:
commit
2e2ab7b485
1 changed files with 1 additions and 1 deletions
|
@ -1161,7 +1161,7 @@ if ($submit || $preview || $refresh)
|
||||||
break;
|
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.
|
// 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.
|
// Another case would be a mod not having sticky permissions for example but edit permissions.
|
||||||
|
|
Loading…
Add table
Reference in a new issue