diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-06-06 10:38:14 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-06-06 10:38:14 +0000 |
commit | 69f132fec866034a1f532f65828ccae5c34680aa (patch) | |
tree | 67ec47a97cccc9f6462f3b6c15da3e67fb31ecd0 /phpBB/includes/functions_module.php | |
parent | f8440e370fa789723a742b5b62d737e4fc71dcc7 (diff) | |
download | forums-69f132fec866034a1f532f65828ccae5c34680aa.tar forums-69f132fec866034a1f532f65828ccae5c34680aa.tar.gz forums-69f132fec866034a1f532f65828ccae5c34680aa.tar.bz2 forums-69f132fec866034a1f532f65828ccae5c34680aa.tar.xz forums-69f132fec866034a1f532f65828ccae5c34680aa.zip |
ah, damn, revert this change. If we check here, hidden modules are no longer able to be called.
git-svn-id: file:///svn/phpbb/trunk@6012 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_module.php')
-rw-r--r-- | phpBB/includes/functions_module.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_module.php b/phpBB/includes/functions_module.php index a684a513d3..cc8b093d4b 100644 --- a/phpBB/includes/functions_module.php +++ b/phpBB/includes/functions_module.php @@ -154,8 +154,8 @@ class p_master { if ($temp_row['left_id'] > $row['left_id'] && $temp_row['left_id'] < $row['right_id']) { - // Module there and not hidden? - if ($temp_row['module_name'] && $temp_row['module_enabled'] && $temp_row['module_display']) + // Module there + if ($temp_row['module_name'] && $temp_row['module_enabled']) { $empty_category = false; break; |