diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html
index 3042027e83..0897328949 100644
--- a/phpBB/docs/CHANGELOG.html
+++ b/phpBB/docs/CHANGELOG.html
@@ -53,6 +53,7 @@
- Changelog
+ - Changes since 3.0.7-PL1
- Changes since 3.0.7
- Changes since 3.0.6
- Changes since 3.0.5
@@ -88,7 +89,7 @@
-
1.i. Changes since 3.0.7
+
1.i. Changes since 3.0.7-PL1
- [Fix] Correctly sort database backup file list by date on database restore page. (Bug #57385)
@@ -102,6 +103,12 @@
- [Feature] Support for Microsoft's Native SQL Server Driver for PHP (Bug #57055 - Patch by Chris Pucci at Microsoft)
+
1.i. Changes since 3.0.7
+
+
+ - [Sec] Do not expose forum content of forums with ACL entries but no actual permission in ATOM Feeds. (Bug #58595)
+
+
1.ii. Changes since 3.0.6
diff --git a/phpBB/feed.php b/phpBB/feed.php
index 1832efbc61..a42aa42a7f 100644
--- a/phpBB/feed.php
+++ b/phpBB/feed.php
@@ -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;