From 9226ec19399c797d2cdefcaef9faa2ae775f978e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20S=CC=8Ckoda?= Date: Fri, 25 Jan 2013 20:20:04 +0100 Subject: [PATCH] MDL-37666 fix comment describing IE CSS limitations --- lib/csslib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/csslib.php b/lib/csslib.php index 548f854adac..b2460005d17 100644 --- a/lib/csslib.php +++ b/lib/csslib.php @@ -113,7 +113,7 @@ function css_send_ie_css($themename, $rev, $etag, $slasharguments) { $relroot = preg_replace('|^http.?://[^/]+|', '', $CFG->wwwroot); - $css = "/** Unfortunately IE6/7 does not support more than 4096 selectors in one CSS file, which means we have to use some ugly hacks :-( **/"; + $css = "/** Unfortunately IE6-9 does not support more than 4096 selectors in one CSS file, which means we have to use some ugly hacks :-( **/"; if ($slasharguments) { $css .= "\n@import url($relroot/styles.php/$themename/$rev/plugins);"; $css .= "\n@import url($relroot/styles.php/$themename/$rev/parents);";