diff options
author | bugreport%peshkin.net <> | 2005-02-26 00:27:24 +0100 |
---|---|---|
committer | bugreport%peshkin.net <> | 2005-02-26 00:27:24 +0100 |
commit | 9eebc260a41390387e7f5c9effe52855af297364 (patch) | |
tree | f39f159546c63bd51e1144d130519a88091f04fd /template/en/default/global | |
parent | 04eec747666f354fc710afd9e7d48d4c1e17b5b2 (diff) | |
download | bugzilla-9eebc260a41390387e7f5c9effe52855af297364.tar.gz bugzilla-9eebc260a41390387e7f5c9effe52855af297364.tar.xz |
Bug 282999 remove Javascript LANGUAGE attribute in all files
Patch by Anne van Kesteren <bug@annevankesteren.nl>
r=LpSolit,a=myk
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/header.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/global/help-header.html.tmpl | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index ac51f1c0b..397418ab0 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -66,14 +66,14 @@ [% PROCESS "global/site-navigation.html.tmpl" %] [% IF javascript %] - <script type="text/javascript" language="JavaScript"> + <script type="text/javascript"> [% javascript %] </script> [% END %] [% IF javascript_urls %] [% FOREACH javascript_url = javascript_urls %] - <script src="[% javascript_url FILTER html %]" type="text/javascript" language="JavaScript"></script> + <script src="[% javascript_url FILTER html %]" type="text/javascript"></script> [% END %] [% END %] diff --git a/template/en/default/global/help-header.html.tmpl b/template/en/default/global/help-header.html.tmpl index 6216d5d88..1a74a1e82 100644 --- a/template/en/default/global/help-header.html.tmpl +++ b/template/en/default/global/help-header.html.tmpl @@ -34,7 +34,7 @@ } </style> - <script type="application/x-javascript"> + <script type="text/javascript"> var currentHelp; function initHelp() { |