mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-05 16:27:38 +02:00
[ticket/13280] Correctly format user page for build_url()
PHPBB3-13280
This commit is contained in:
@@ -79,9 +79,16 @@ class phpbb_build_url_test extends phpbb_test_case
|
||||
{
|
||||
global $user, $phpbb_root_path;
|
||||
|
||||
$user->page['page'] = $page;
|
||||
$user->page['page'] = str_replace('%2F', '/', urlencode($this->sanitizer($page)));
|
||||
$output = build_url($strip_vars);
|
||||
|
||||
$this->assertEquals($expected, $output);
|
||||
}
|
||||
|
||||
protected function sanitizer($value)
|
||||
{
|
||||
$type_cast_helper = new \phpbb\request\type_cast_helper();
|
||||
$type_cast_helper->set_var($value, $value, gettype($value), true);
|
||||
return $value;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user