1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-04 15:57:45 +02:00

[ticket/11620] Remove accidental argument from testable_facade.

PHPBB3-11620
This commit is contained in:
Andy Chase
2013-06-26 12:49:05 -07:00
parent 19a348e359
commit e1d957c3ee

View File

@@ -28,7 +28,7 @@ class phpbb_session_testable_facade
$request->overwrite('PHP_SELF', $php_self, phpbb_request_interface::SERVER);
$request->overwrite('QUERY_STRING', $query_string, phpbb_request_interface::SERVER);
$request->overwrite('REQUEST_URI', $request_uri, phpbb_request_interface::SERVER);
return phpbb_session::extract_current_page($root_path, phpbb_request_interface::SERVER);
return phpbb_session::extract_current_page($root_path);
}
// [To be completed]