Commit ca56edb9 authored by kiko%async.com.br's avatar kiko%async.com.br

Bustage fix for bug 251469. Solve filtering issues with javascript_url,

which includes fixing style_url as well and removing it from filterexceptions. r,a=justdave
parent fe27d056
...@@ -253,7 +253,6 @@ ...@@ -253,7 +253,6 @@
'global/header.html.tmpl' => [ 'global/header.html.tmpl' => [
'javascript', 'javascript',
'style', 'style',
'style_url',
'bgcolor', 'bgcolor',
'onload', 'onload',
'bodyattrs', 'bodyattrs',
......
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
[% IF javascript_urls %] [% IF javascript_urls %]
[% FOREACH javascript_url = javascript_urls %] [% FOREACH javascript_url = javascript_urls %]
<script src="[% javascript_url %]" type="text/javascript" language="JavaScript"></script> <script src="[% javascript_url FILTER html %]" type="text/javascript" language="JavaScript"></script>
[% END %] [% END %]
[% END %] [% END %]
...@@ -90,7 +90,7 @@ ...@@ -90,7 +90,7 @@
[% IF style_urls %] [% IF style_urls %]
[% FOREACH style_url = style_urls %] [% FOREACH style_url = style_urls %]
<link href="[% style_url %]" rel="stylesheet" type="text/css"> <link href="[% style_url FILTER html %]" rel="stylesheet" type="text/css">
[% END %] [% END %]
[% END %] [% END %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment