mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-18 22:58:10 +01:00
Fix Bug #58595 - ATOM Feed exposes forum content under some circumstances.
This commit is contained in:
parent
ac32927566
commit
7f991e8480
@ -99,6 +99,7 @@
|
||||
<li>[Fix] Add terminating semicolons to JavaScript code. (Bug #58085 - Patch by nn-)</li>
|
||||
<li>[Fix] Minor language fixes. (Bug #54855)</li>
|
||||
<li>[Fix] Parsing urls in signatures properly uses config settings. (Bug #57105)</li>
|
||||
<li>[Fix] Do not expose forum content of forums with ACL entries but no actual permission in ATOM Feeds. (Bug #58595)</li>
|
||||
<li>[Feature] Support for Microsoft's Native SQL Server Driver for PHP (Bug #57055 - Patch by Chris Pucci at Microsoft)</li>
|
||||
</ul>
|
||||
|
||||
|
@ -522,7 +522,7 @@ class phpbb_feed_base
|
||||
|
||||
if (!isset($forum_ids))
|
||||
{
|
||||
$forum_ids = array_keys($auth->acl_getf('f_read'));
|
||||
$forum_ids = array_keys($auth->acl_getf('f_read', true));
|
||||
}
|
||||
|
||||
return $forum_ids;
|
||||
|
Loading…
x
Reference in New Issue
Block a user