diff options
author | Nils Adermann <naderman@naderman.de> | 2006-02-22 11:39:27 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2006-02-22 11:39:27 +0000 |
commit | 3da86bb615795653db2b57704c8104663a59585d (patch) | |
tree | e20200a48db728fdd2be203c9a359a73519a08e1 /phpBB/includes/functions_module.php | |
parent | 1a96cc09c1ae16b2e6a888b0c107a37a9bbc91e3 (diff) | |
download | forums-3da86bb615795653db2b57704c8104663a59585d.tar forums-3da86bb615795653db2b57704c8104663a59585d.tar.gz forums-3da86bb615795653db2b57704c8104663a59585d.tar.bz2 forums-3da86bb615795653db2b57704c8104663a59585d.tar.xz forums-3da86bb615795653db2b57704c8104663a59585d.zip |
- properly hide items
git-svn-id: file:///svn/phpbb/trunk@5570 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_module.php')
-rw-r--r-- | phpBB/includes/functions_module.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/phpBB/includes/functions_module.php b/phpBB/includes/functions_module.php index 031c6405de..6e8fc7b2c8 100644 --- a/phpBB/includes/functions_module.php +++ b/phpBB/includes/functions_module.php @@ -581,14 +581,13 @@ class p_master /** * Toggle whether this module will be displayed or not */ - function set_display($id, $display = true) + function set_display($id, $mode = false, $display = true) { foreach ($this->module_ary as $row_id => $itep_ary) { - if ($itep_ary['name'] === $id || $itep_ary['id'] === (int) $id) + if (($itep_ary['name'] === $id || $itep_ary['id'] === (int) $id) && (!$mode || $itep_ary['mode'] === $mode)) { $this->module_ary[$row_id]['display'] = (int) $display; - break; } } } |