Ticket #20896: 20896.2.diff
| File 20896.2.diff, 1.0 KB (added by , 14 years ago) |
|---|
-
wp-includes/theme.php
1672 1672 request = true; 1673 1673 <?php endif; ?> 1674 1674 1675 b[c] = b[c].replace( rcs, '' );1676 b[c] += ( window.postMessage && request ? ' ' : ' no-' ) + cs;1675 if ( window.postMessage && request ) 1676 b[c] = b[c].replace( rcs, ' ' + cs + ' ' ); 1677 1677 }()); 1678 1678 </script> 1679 1679 <?php -
wp-includes/post-template.php
498 498 if ( is_user_logged_in() ) 499 499 $classes[] = 'logged-in'; 500 500 501 if ( is_admin_bar_showing() ) 501 if ( is_admin_bar_showing() ) { 502 502 $classes[] = 'admin-bar'; 503 503 $classes[] = 'no-customize-support'; 504 } 505 504 506 if ( get_background_color() || get_theme_mod( 'background_image' ) || get_theme_support( 'custom-background', 'default-image' ) ) 505 507 $classes[] = 'custom-background'; 506 508