mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
Fix Bug #58595 - ATOM Feed exposes forum content under some circumstances.
This commit is contained in:
parent
872ad322ec
commit
b1ab74b043
2 changed files with 9 additions and 2 deletions
|
@ -86,7 +86,14 @@
|
|||
<div class="inner"><span class="corners-top"><span></span></span>
|
||||
|
||||
<div class="content">
|
||||
<a name="v306"></a><h3>1.i. Changes since 3.0.6</h3>
|
||||
|
||||
<a name="v307"></a><h3>1.i. Changes since 3.0.7</h3>
|
||||
|
||||
<ul>
|
||||
<li>[Fix] Do not expose forum content of forums with ACL entries but no actual permission in ATOM Feeds. (Bug #58595)</li>
|
||||
</ul>
|
||||
|
||||
<a name="v306"></a><h3>1.ii. Changes since 3.0.6</h3>
|
||||
|
||||
<ul>
|
||||
<li>[Fix] Allow ban reason and length to be selected and copied in ACP and subsilver2 MCP. (Bug #51095)</li>
|
||||
|
|
|
@ -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…
Add table
Reference in a new issue