Fix Bug #58595 - ATOM Feed exposes forum content under some circumstances.

This commit is contained in:
Andreas Fischer 2010-03-05 18:51:30 +01:00 committed by Nils Adermann
parent 872ad322ec
commit b1ab74b043
2 changed files with 9 additions and 2 deletions

View file

@ -86,7 +86,14 @@
<div class="inner"><span class="corners-top"><span></span></span> <div class="inner"><span class="corners-top"><span></span></span>
<div class="content"> <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> <ul>
<li>[Fix] Allow ban reason and length to be selected and copied in ACP and subsilver2 MCP. (Bug #51095)</li> <li>[Fix] Allow ban reason and length to be selected and copied in ACP and subsilver2 MCP. (Bug #51095)</li>

View file

@ -522,7 +522,7 @@ class phpbb_feed_base
if (!isset($forum_ids)) 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; return $forum_ids;