Browse Source

Fixed IE9 conditional in bones.php

Brian Hadaway 13 years ago
parent
commit
58615982e8
1 changed files with 1 additions and 1 deletions
  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/
 // source: http://code.garyjones.co.uk/ie-conditional-style-sheets-wordpress/
 function bones_ie_conditional( $tag, $handle ) {
 function bones_ie_conditional( $tag, $handle ) {
 	if ( 'bones-ie-only' == $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;
 	return $tag;
 }
 }