aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/feed.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-10-01 22:14:04 +0200
committerJoas Schilling <nickvergessen@gmx.de>2012-10-01 22:14:04 +0200
commit4a65940e6206aef6b85a0aacfb5324ecabf76e12 (patch)
tree73c0953ad4122a7a73642418de60714d30b2b3e0 /phpBB/feed.php
parent280619eea9585924a44611f001f266d354036d0a (diff)
downloadforums-4a65940e6206aef6b85a0aacfb5324ecabf76e12.tar
forums-4a65940e6206aef6b85a0aacfb5324ecabf76e12.tar.gz
forums-4a65940e6206aef6b85a0aacfb5324ecabf76e12.tar.bz2
forums-4a65940e6206aef6b85a0aacfb5324ecabf76e12.tar.xz
forums-4a65940e6206aef6b85a0aacfb5324ecabf76e12.zip
[feature/soft-delete] Add unit tests for get_forums_visibility_sql()
PHPBB3-9657
Diffstat (limited to 'phpBB/feed.php')
-rw-r--r--phpBB/feed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/feed.php b/phpBB/feed.php
index 2e1589d999..aeb5abcc83 100644
--- a/phpBB/feed.php
+++ b/phpBB/feed.php
@@ -755,7 +755,7 @@ class phpbb_feed_overall extends phpbb_feed_post_base
$sql = 'SELECT topic_id, topic_last_post_time
FROM ' . TOPICS_TABLE . '
WHERE topic_moved_id = 0
- AND ' . phpbb_content_visibility::get_visibility_sql_forums('topic', $forum_ids) . '
+ AND ' . phpbb_content_visibility::get_forums_visibility_sql('topic', $forum_ids) . '
ORDER BY topic_last_post_time DESC';
$result = $db->sql_query_limit($sql, $this->num_items);