Explorar o código

Merge pull request #193 from brianhadaway/master

Changed IE9 conditional in bones.php.
Eddie Machado %!s(int64=13) %!d(string=hai) anos
pai
achega
0389b65213
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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;
 }