aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/admin
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/admin')
-rw-r--r--phpBB/admin/admin_groupauth.php5
-rw-r--r--phpBB/admin/admin_userauth.php2
2 files changed, 4 insertions, 3 deletions
diff --git a/phpBB/admin/admin_groupauth.php b/phpBB/admin/admin_groupauth.php
index c51e797eba..4d4355fb03 100644
--- a/phpBB/admin/admin_groupauth.php
+++ b/phpBB/admin/admin_groupauth.php
@@ -495,7 +495,8 @@ if( isset($HTTP_POST_VARS['submit']) && ( !empty($HTTP_POST_VARS[POST_GROUPS_URL
}
else
{
- header("Location: " . append_sid("admin_groupauth.$phpEx?" . POST_GROUPS_URL . "=$group_id"));
+
+ header("Location: " . append_sid("admin_groupauth.$phpEx?" . POST_GROUPS_URL . "=$group_id", true));
}
}
@@ -862,7 +863,7 @@ else
include('page_header_admin.'.$phpEx);
$template->set_filenames(array(
- "body" => "admin/auth_group_select_body.tpl")
+ "body" => "admin/auth_select_body.tpl")
);
$template->assign_vars(array(
diff --git a/phpBB/admin/admin_userauth.php b/phpBB/admin/admin_userauth.php
index 91edebb6f0..240b40713f 100644
--- a/phpBB/admin/admin_userauth.php
+++ b/phpBB/admin/admin_userauth.php
@@ -571,7 +571,7 @@ if(isset($HTTP_POST_VARS['submit']) && !empty($HTTP_POST_VARS[POST_USERS_URL]))
}
else
{
- header("Location: " . append_sid("admin_userauth.$phpEx?" . POST_USERS_URL . "=$user_id"));
+ header("Location: " . append_sid("admin_userauth.$phpEx?" . POST_USERS_URL . "=$user_id", true));
}
}
}