From 146bad3346995496a111ce4a7ee2020572973e98 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Wed, 5 Mar 2014 00:03:50 +0100 Subject: Bug 956190 (part 3): Remove IE-fixes.css (Internet Explorer 7 and older are no longer supported) r/a=justdave --- Bugzilla/Template.pm | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'Bugzilla/Template.pm') 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) { -- cgit v1.2.3-24-g4f1b