Преглед изворни кода

Fixed IE9 conditional in bones.php

Brian Hadaway пре 13 година
родитељ
комит
58615982e8
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      library/bones.php

+ 1 - 1
library/bones.php

@@ -149,7 +149,7 @@ function bones_scripts_and_styles() {
 // source: http://code.garyjones.co.uk/ie-conditional-style-sheets-wordpress/
 function bones_ie_conditional( $tag, $handle ) {
 	if ( 'bones-ie-only' == $handle )
-		$tag = '<!--[if lte IE 9]>' . "\n" . $tag . '<![endif]-->' . "\n";
+		$tag = '<!--[if lt IE 9]>' . "\n" . $tag . '<![endif]-->' . "\n";
 	return $tag;
 }