diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2010-03-05 18:51:30 +0100 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2010-03-05 20:59:20 +0100 |
| commit | b1ab74b0431e2934cccf3bfa80aec0eef928eeb3 (patch) | |
| tree | e94a26f0ea3ddc38f16f4af959137e7755575457 /phpBB/feed.php | |
| parent | 872ad322ec69a032ec22d9e8ae19b9a8399d7712 (diff) | |
| download | forums-b1ab74b0431e2934cccf3bfa80aec0eef928eeb3.tar forums-b1ab74b0431e2934cccf3bfa80aec0eef928eeb3.tar.gz forums-b1ab74b0431e2934cccf3bfa80aec0eef928eeb3.tar.bz2 forums-b1ab74b0431e2934cccf3bfa80aec0eef928eeb3.tar.xz forums-b1ab74b0431e2934cccf3bfa80aec0eef928eeb3.zip | |
Fix Bug #58595 - ATOM Feed exposes forum content under some circumstances.
Diffstat (limited to 'phpBB/feed.php')
| -rw-r--r-- | phpBB/feed.php | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
