diff options
author | Josh Woody <a_jelly_doughnut@phpbb.com> | 2010-06-20 15:01:26 -0500 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-08-29 17:49:38 +0200 |
commit | c32d76080605f843bb23e9a608c368d4b5dc55d8 (patch) | |
tree | d179da9973265432acf4c5ab11eefc5229653b65 /phpBB/search.php | |
parent | 244f6e2ddc7818125edc273be1d83a5298ce6589 (diff) | |
download | forums-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/search.php')
-rw-r--r-- | phpBB/search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index 7bf941f127..9ff3c2e027 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -266,7 +266,7 @@ if ($keywords || $author || $author_id || $search_id || $submit) $m_approve_fid_sql = ' AND p.post_approved = 1'; } */ - $m_approve_fid_sql = ' AND ' . topic_visibility::get_visibility_sql_global('post', $ex_fid_ary, 'p.'); + $m_approve_fid_sql = ' AND ' . phpbb_visibility::get_visibility_sql_global('post', $ex_fid_ary, 'p.'); if ($reset_search_forum) { |