mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-25 11:28:55 +00:00
[ticket/17535] Fix global var names duplication
PHPBB-17535
This commit is contained in:
parent
65ef7f1156
commit
788e408ceb
2 changed files with 2 additions and 2 deletions
|
@ -249,7 +249,7 @@ class phpbb_bbcode_parser_test extends \phpbb_test_case
|
|||
$this->markTestIncomplete($incomplete);
|
||||
}
|
||||
|
||||
global $user, $request, $symfony_request, $phpbb_dispatcher, $config, $phpEx, $request, $symfony_request;
|
||||
global $user, $request, $symfony_request, $phpbb_dispatcher, $config, $phpEx;
|
||||
$phpEx = 'php';
|
||||
$config = new \phpbb\config\config([
|
||||
'max_post_font_size' => 0,
|
||||
|
|
|
@ -52,7 +52,7 @@ class phpbb_url_bbcode_test extends phpbb_test_case
|
|||
*/
|
||||
public function test_url($description, $message, $expected)
|
||||
{
|
||||
global $user, $request, $symfony_request, $phpbb_dispatcher, $config, $phpEx, $request, $symfony_request;
|
||||
global $user, $request, $symfony_request, $phpbb_dispatcher, $config, $phpEx;
|
||||
$phpEx = 'php';
|
||||
$config = new \phpbb\config\config([
|
||||
'max_post_font_size' => 0,
|
||||
|
|
Loading…
Add table
Reference in a new issue