mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
Another multi-dimensional array which did not use request_var properly
git-svn-id: file:///svn/phpbb/trunk@7693 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
9c0c1e14b6
commit
bc631bb242
1 changed files with 1 additions and 1 deletions
|
@ -616,7 +616,7 @@ class acp_permissions
|
|||
$assigned_role = (isset($_POST['role'][$ug_id][$forum_id])) ? (int) $_POST['role'][$ug_id][$forum_id] : 0;
|
||||
|
||||
// Do the admin want to set these permissions to other items too?
|
||||
$inherit = request_var('inherit', array(0));
|
||||
$inherit = request_var('inherit', array(0 => array(0)));
|
||||
|
||||
$ug_id = array($ug_id);
|
||||
$forum_id = array($forum_id);
|
||||
|
|
Loading…
Add table
Reference in a new issue