Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
ca56edb9
Commit
ca56edb9
authored
Jul 16, 2004
by
kiko%async.com.br
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
filterexceptions.pl
template/en/default/filterexceptions.pl
+0
-1
header.html.tmpl
template/en/default/global/header.html.tmpl
+2
-2
No files found.
template/en/default/filterexceptions.pl
View file @
ca56edb9
...
...
@@ -253,7 +253,6 @@
'global/header.html.tmpl'
=>
[
'javascript'
,
'style'
,
'style_url'
,
'bgcolor'
,
'onload'
,
'bodyattrs'
,
...
...
template/en/default/global/header.html.tmpl
View file @
ca56edb9
...
...
@@ -74,7 +74,7 @@
[% IF 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 %]
...
...
@@ -90,7 +90,7 @@
[% IF 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 %]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment