From dac0adead30ed70400a2a22f9439a8184ad479d8 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sat, 3 May 2003 23:58:45 +0000 Subject: page header/footer become functions, forum passwords (I know, I know but it appears a popular feature for some reason ... inclusion not yet set in concrete nor complete), various bug fixes (and no doubt new bugs). git-svn-id: file:///svn/phpbb/trunk@3969 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/adm/admin_forums.php | 36 +++++++++++++++++++++++++----------- 1 file changed, 25 insertions(+), 11 deletions(-) (limited to 'phpBB/adm/admin_forums.php') diff --git a/phpBB/adm/admin_forums.php b/phpBB/adm/admin_forums.php index 4e4c92fa47..f480b122a5 100644 --- a/phpBB/adm/admin_forums.php +++ b/phpBB/adm/admin_forums.php @@ -82,8 +82,8 @@ switch ($mode) $enable_prune = (!empty($_POST['enable_prune'])) ? 1 : 0; $prune_days = (isset($_POST['prune_days'])) ? intval($_POST['prune_days']) : 7; $prune_freq = (isset($_POST['prune_freq'])) ? intval($_POST['prune_freq']) : 1; - $forum_password = (isset($_POST['forum_password'])) ? intval($_POST['forum_password']) : ''; - $forum_password_confirm = (isset($_POST['forum_password_confirm'])) ? intval($_POST['forum_password_confirm']) : ''; + $forum_password = (isset($_POST['forum_password'])) ? htmlspecialchars($_POST['forum_password']) : ''; + $forum_password_confirm = (isset($_POST['forum_password_confirm'])) ? htmlspecialchars($_POST['forum_password_confirm']) : ''; if (isset($_POST['update'])) { @@ -271,7 +271,8 @@ switch ($mode) $parents_list = make_forum_select($parent_id, $forum_id, false, false, false); $forums_list = make_forum_select($parent_id, $forum_id, false, true, false); - + + $forum_password_confirm = $forum_password; } else { @@ -279,6 +280,19 @@ switch ($mode) $forum_id = $parent_id; $parents_list = make_forum_select($parent_id); + + if ($parent_id && !isset($_POST['update'])) + { + $temp_forum_desc = $forum_desc; + $temp_forum_name = $forum_name; + $temp_forum_type = $forum_type; + + extract(get_forum_info($parent_id)); + $forum_type = $temp_forum_type; + $forum_name = $temp_forum_name; + $forum_desc = $temp_forum_desc; + $forum_password_confirm = $forum_password; + } } $forum_type_options = ''; @@ -312,7 +326,7 @@ switch ($mode) $navigation .= ($row['forum_id'] == $forum_id) ? ' -> ' . $row['forum_name'] : ' -> ' . $row['forum_name'] . ''; } - page_header($l_title); + adm_page_header($l_title); ?> @@ -472,11 +486,11 @@ switch ($mode) lang['FORUM_PASSWORD'] ?>:
lang['FORUM_PASSWORD_EXPLAIN']; ?> - + lang['FORUM_PASSWORD_CONFIRM'] ?>:
lang['FORUM_PASSWORD_CONFIRM_EXPLAIN']; ?> - + lang['MANAGE']); + adm_page_header($user->lang['MANAGE']); extract(get_forum_info($forum_id)); $subforums_id = array(); @@ -733,7 +747,7 @@ switch ($mode) lang['MANAGE']); +adm_page_header($user->lang['MANAGE']); ?> @@ -994,7 +1008,7 @@ while ($row = $db->sql_fetchrow($result))