diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-06-16 17:31:00 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-06-16 17:31:00 +0000 |
commit | 010e453b45e875d6eefdcf1fb2d20d4341c0b64a (patch) | |
tree | 11ed00d30c09f6aaab76d6b3c7d7addced6e9de9 | |
parent | b0c3e3958220c04cbb4f25f0c24b53b65a34e360 (diff) | |
download | forums-010e453b45e875d6eefdcf1fb2d20d4341c0b64a.tar forums-010e453b45e875d6eefdcf1fb2d20d4341c0b64a.tar.gz forums-010e453b45e875d6eefdcf1fb2d20d4341c0b64a.tar.bz2 forums-010e453b45e875d6eefdcf1fb2d20d4341c0b64a.tar.xz forums-010e453b45e875d6eefdcf1fb2d20d4341c0b64a.zip |
fix bug #2258
git-svn-id: file:///svn/phpbb/trunk@6074 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/includes/functions_display.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 32a6f5e8fc..b095b3e286 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -366,7 +366,7 @@ function display_forums($root_data = '', $display_moderators = true, $return_mod return array($active_forum_ary, $forum_moderators); } - return $active_forum_ary; + return array($active_forum_ary, array()); } /** |