mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Allow setting parent forums regardless of permission settings. (Bug #58415)
This commit is contained in:
parent
be78817d27
commit
144effd74c
2 changed files with 3 additions and 2 deletions
|
@ -98,6 +98,7 @@
|
||||||
<li>[Fix] Allow redirect() function to redirect across directories. (Bug #56965)</li>
|
<li>[Fix] Allow redirect() function to redirect across directories. (Bug #56965)</li>
|
||||||
<li>[Fix] Add terminating semicolons to JavaScript code. (Bug #58085 - Patch by nn-)</li>
|
<li>[Fix] Add terminating semicolons to JavaScript code. (Bug #58085 - Patch by nn-)</li>
|
||||||
<li>[Fix] Minor language fixes. (Bug #54855)</li>
|
<li>[Fix] Minor language fixes. (Bug #54855)</li>
|
||||||
|
<li>[Fix] Allow setting parent forums regardless of permission settings. (Bug #57415)</li>
|
||||||
<li>[Feature] Support for Microsoft's Native SQL Server Driver for PHP (Bug #57055 - Patch by Chris Pucci at Microsoft)</li>
|
<li>[Feature] Support for Microsoft's Native SQL Server Driver for PHP (Bug #57055 - Patch by Chris Pucci at Microsoft)</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
|
@ -407,7 +407,7 @@ class acp_forums
|
||||||
$exclude_forums[] = $row['forum_id'];
|
$exclude_forums[] = $row['forum_id'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$parents_list = make_forum_select($forum_data['parent_id'], $exclude_forums, false, false, false);
|
$parents_list = make_forum_select($forum_data['parent_id'], $exclude_forums, true, false, false);
|
||||||
|
|
||||||
$forum_data['forum_password_confirm'] = $forum_data['forum_password'];
|
$forum_data['forum_password_confirm'] = $forum_data['forum_password'];
|
||||||
}
|
}
|
||||||
|
@ -416,7 +416,7 @@ class acp_forums
|
||||||
$this->page_title = 'CREATE_FORUM';
|
$this->page_title = 'CREATE_FORUM';
|
||||||
|
|
||||||
$forum_id = $this->parent_id;
|
$forum_id = $this->parent_id;
|
||||||
$parents_list = make_forum_select($this->parent_id, false, false, false, false);
|
$parents_list = make_forum_select($this->parent_id, false, true, false, false);
|
||||||
|
|
||||||
// Fill forum data with default values
|
// Fill forum data with default values
|
||||||
if (!$update)
|
if (!$update)
|
||||||
|
|
Loading…
Add table
Reference in a new issue