aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/admin_forums.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-07-13 23:29:22 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-07-13 23:29:22 +0000
commit7668388b4ed9fddc95e6740da0e6fb3c97edb187 (patch)
tree896e035591d2d4acff7c9bd6a9d68a49e8179206 /phpBB/adm/admin_forums.php
parent2c400376a17e981bffd7e07de474cc20400a7457 (diff)
downloadforums-7668388b4ed9fddc95e6740da0e6fb3c97edb187.tar
forums-7668388b4ed9fddc95e6740da0e6fb3c97edb187.tar.gz
forums-7668388b4ed9fddc95e6740da0e6fb3c97edb187.tar.bz2
forums-7668388b4ed9fddc95e6740da0e6fb3c97edb187.tar.xz
forums-7668388b4ed9fddc95e6740da0e6fb3c97edb187.zip
More styling stuff ... activate, deactivate styles ... deactivated styles can still be used in forum/board styling selectors
git-svn-id: file:///svn/phpbb/trunk@4253 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/admin_forums.php')
-rw-r--r--phpBB/adm/admin_forums.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/adm/admin_forums.php b/phpBB/adm/admin_forums.php
index 37a74153f5..57b4d545ed 100644
--- a/phpBB/adm/admin_forums.php
+++ b/phpBB/adm/admin_forums.php
@@ -316,7 +316,7 @@ switch ($mode)
$forum_type_options .= '<option value="' . $value . '"' . (($value == $forum_type) ? ' selected="selected"' : '') . '>' . $user->lang['TYPE_' . $lang] . '</option>';
}
- $styles_list = style_select($forum_style);
+ $styles_list = style_select($forum_style, true);
$statuslist = '<option value="' . ITEM_UNLOCKED . '"' . (($forum_status == ITEM_UNLOCKED) ? ' selected="selected"' : '') . '>' . $user->lang['UNLOCKED'] . '</option><option value="' . ITEM_LOCKED . '"' . (($forum_status == ITEM_LOCKED) ? ' selected="selected"' : '') . '>' . $user->lang['LOCKED'] . '</option>';