mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-10 18:54:08 +02:00
[ticket/11700] Move all recent code to namespaces
PHPBB3-11700
This commit is contained in:
@@ -36,8 +36,8 @@ function mcp_forum_view($id, $mode, $action, $forum_info)
|
||||
// Fixes a "bug" that makes forum_view use the same ordering as topic_view
|
||||
$request->overwrite('sk', null);
|
||||
$request->overwrite('sd', null);
|
||||
$request->overwrite('sk', null, phpbb_request_request_interface::POST);
|
||||
$request->overwrite('sd', null, phpbb_request_request_interface::POST);
|
||||
$request->overwrite('sk', null, \phpbb\request\request_interface::POST);
|
||||
$request->overwrite('sd', null, \phpbb\request\request_interface::POST);
|
||||
}
|
||||
|
||||
$forum_id = $forum_info['forum_id'];
|
||||
|
Reference in New Issue
Block a user