1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/11508] Allow equal sign in parameter value.

PHPBB3-11508
This commit is contained in:
Cesar G
2014-04-15 13:13:37 -07:00
parent 9e605b1338
commit e287eea2c6
2 changed files with 21 additions and 4 deletions

View File

@@ -226,6 +226,21 @@ class phpbb_path_helper_test extends phpbb_test_case
true,
array('base' => 'https://phpbb.com/community/viewtopic.php', 'params' => array('t' => '5', 'f' => '6')),
),
array(
'test.php?topic=post=5&f=3',
true,
array('base' => 'test.php', 'params' => array('topic' => 'post=5', 'f' => '3')),
),
array(
'mcp.php?&t=4&f=3',
true,
array('base' => 'mcp.php', 'params' => array('t' => '4', 'f' => '3')),
),
array(
'mcp.php?=4&f=3',
true,
array('base' => 'mcp.php', 'params' => array('f' => '3')),
),
);
}