mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-09 10:16:36 +02:00
[ticket/17050] Remove trailing slash from generated css includes
PHPBB3-17050
This commit is contained in:
@@ -95,19 +95,19 @@ class phpbb_template_template_includecss_test extends phpbb_template_template_te
|
||||
*/
|
||||
array(
|
||||
array('TEST' => 1),
|
||||
'<link href="tests/template/templates/child_only.css?assets_version=1" rel="stylesheet" media="screen" />',
|
||||
'<link href="tests/template/templates/child_only.css?assets_version=1" rel="stylesheet" media="screen">',
|
||||
),
|
||||
array(
|
||||
array('TEST' => 2),
|
||||
'<link href="tests/template/parent_templates/parent_only.css?assets_version=1" rel="stylesheet" media="screen" />',
|
||||
'<link href="tests/template/parent_templates/parent_only.css?assets_version=1" rel="stylesheet" media="screen">',
|
||||
),
|
||||
array(
|
||||
array('TEST' => 3),
|
||||
'<link href="tests/template/ext/include/css/styles/all/theme/test.css?assets_version=1" rel="stylesheet" media="screen" />',
|
||||
'<link href="tests/template/ext/include/css/styles/all/theme/test.css?assets_version=1" rel="stylesheet" media="screen">',
|
||||
),
|
||||
array(
|
||||
array('TEST' => 4),
|
||||
'<link href="tests/template/ext/include/css/styles/all/theme/child_only.css?assets_version=1" rel="stylesheet" media="screen" />',
|
||||
'<link href="tests/template/ext/include/css/styles/all/theme/child_only.css?assets_version=1" rel="stylesheet" media="screen">',
|
||||
),
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user