diff --git a/phpBB/phpbb/template/assets_bag.php b/phpBB/phpbb/template/assets_bag.php
index 9013061b96..067b0eb8f1 100644
--- a/phpBB/phpbb/template/assets_bag.php
+++ b/phpBB/phpbb/template/assets_bag.php
@@ -71,7 +71,7 @@ class assets_bag
$output = '';
foreach ($this->stylesheets as $stylesheet)
{
- $output .= "get_url()}\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\" />\n";
+ $output .= "get_url()}\" rel=\"stylesheet\" media=\"screen\" />\n";
}
return $output;
@@ -87,7 +87,7 @@ class assets_bag
$output = '';
foreach ($this->scripts as $script)
{
- $output .= "\n";
+ $output .= "\n";
}
return $output;
diff --git a/tests/template/template_includecss_test.php b/tests/template/template_includecss_test.php
index 66d4f5cbde..f195742dc6 100644
--- a/tests/template/template_includecss_test.php
+++ b/tests/template/template_includecss_test.php
@@ -94,19 +94,19 @@ class phpbb_template_template_includecss_test extends phpbb_template_template_te
*/
array(
array('TEST' => 1),
- '',
+ '',
),
array(
array('TEST' => 2),
- '',
+ '',
),
array(
array('TEST' => 3),
- '',
+ '',
),
array(
array('TEST' => 4),
- '',
+ '',
),
);
}
diff --git a/tests/template/template_includejs_test.php b/tests/template/template_includejs_test.php
index 232f551b4a..19c016ae5e 100644
--- a/tests/template/template_includejs_test.php
+++ b/tests/template/template_includejs_test.php
@@ -28,67 +28,67 @@ class phpbb_template_template_includejs_test extends phpbb_template_template_tes
*/
array(
array('TEST' => 1),
- '',
+ '',
),
array(
array('TEST' => 2),
- '',
+ '',
),
array(
array('TEST' => 3),
- '',
+ '',
),
array(
array('TEST' => 4),
- '',
+ '',
),
array(
array('TEST' => 6),
- '',
+ '',
),
array(
array('TEST' => 7),
- '',
+ '',
),
array(
array('TEST' => 8),
- '',
+ '',
),
array(
array('TEST' => 9),
- '',
+ '',
),
array(
array('TEST' => 10),
- '',
+ '',
),
array(
array('TEST' => 11),
- '',
+ '',
),
array(
array('TEST' => 12),
- '',
+ '',
),
array(
array('TEST' => 14),
- '',
+ '',
),
array(
array('TEST' => 15),
- '',
+ '',
),
array(
array('TEST' => 16),
- '',
+ '',
),
array(
array('TEST' => 17),
- '',
+ '',
),
array(
array('TEST' => 18),
- '',
+ '',
),
);
}