aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewforum.php
diff options
context:
space:
mode:
authorJosh Woody <a_jelly_doughnut@phpbb.com>2010-06-20 15:01:26 -0500
committerJoas Schilling <nickvergessen@gmx.de>2012-08-29 17:49:38 +0200
commitc32d76080605f843bb23e9a608c368d4b5dc55d8 (patch)
treed179da9973265432acf4c5ab11eefc5229653b65 /phpBB/viewforum.php
parent244f6e2ddc7818125edc273be1d83a5298ce6589 (diff)
downloadforums-c32d76080605f843bb23e9a608c368d4b5dc55d8.tar
forums-c32d76080605f843bb23e9a608c368d4b5dc55d8.tar.gz
forums-c32d76080605f843bb23e9a608c368d4b5dc55d8.tar.bz2
forums-c32d76080605f843bb23e9a608c368d4b5dc55d8.tar.xz
forums-c32d76080605f843bb23e9a608c368d4b5dc55d8.zip
[feature/soft-delete] I told you I was going to rename the class!
Rename topic_visibility class to phpbb_visibility. Also a bit of work to the class itself, mostly cleanup and adding the comments that I'd previously written. PHPBB3-9657
Diffstat (limited to 'phpBB/viewforum.php')
-rw-r--r--phpBB/viewforum.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index 2c29d92cd8..c775d33631 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -241,7 +241,7 @@ if ($sort_days)
AND (topic_last_post_time >= $min_post_time
OR topic_type = " . POST_ANNOUNCE . '
OR topic_type = ' . POST_GLOBAL . ')
- AND ' . topic_visibility::get_visibility_sql('topic', $forum_id);
+ AND ' . phpbb_visibility::get_visibility_sql('topic', $forum_id);
$result = $db->sql_query($sql);
$topics_count = (int) $db->sql_fetchfield('num_topics');
$db->sql_freeresult($result);
@@ -353,7 +353,7 @@ $sql_array = array(
'LEFT_JOIN' => array(),
);
-$sql_approved = 'AND ' . topic_visibility::get_visibility_sql('topic', $forum_id, 't.');
+$sql_approved = 'AND ' . phpbb_visibility::get_visibility_sql('topic', $forum_id, 't.');
if ($user->data['is_registered'])
{