diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2014-03-05 00:03:50 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2014-03-05 00:03:50 +0100 |
commit | 146bad3346995496a111ce4a7ee2020572973e98 (patch) | |
tree | 51e8609af2d5c07f503587a265d977d014599d37 /Bugzilla | |
parent | 4a8f3e98c1c98765c802e91dde1b2092cbd2e46b (diff) | |
download | bugzilla-146bad3346995496a111ce4a7ee2020572973e98.tar.gz bugzilla-146bad3346995496a111ce4a7ee2020572973e98.tar.xz |
Bug 956190 (part 3): Remove IE-fixes.css (Internet Explorer 7 and older are no longer supported)
r/a=justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Template.pm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index 3766137a5..b8fcae107 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -428,15 +428,13 @@ sub mtime_filter { # 1. YUI CSS # 2. Standard Bugzilla stylesheet set (persistent) # 3. Third-party "skin" stylesheet set, per user prefs (persistent) -# 4. Page-specific styles -# 5. Custom Bugzilla stylesheet set (persistent) +# 4. Custom Bugzilla stylesheet set (persistent) sub css_files { my ($style_urls, $yui, $yui_css) = @_; - - # global.css goes on every page, and so does IE-fixes.css. - my @requested_css = ('skins/standard/global.css', @$style_urls, - 'skins/standard/IE-fixes.css'); + + # global.css goes on every page. + my @requested_css = ('skins/standard/global.css', @$style_urls); my @yui_required_css; foreach my $yui_name (@$yui) { |