Fix logic inversion. Props christmasboy81. fixes #7121

git-svn-id: https://develop.svn.wordpress.org/trunk@10949 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-04-16 18:12:41 +00:00
parent bf7fa167fa
commit 112eae8b12
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
<?php
// Checks to see whether it needs a sidebar or not
if ( !empty($withcomments) && !is_single() ) {
if ( empty($withcomments) && !is_single() ) {
?>
#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg-<?php bloginfo('text_direction'); ?>.jpg") repeat-y top; border: none; }
<?php } else { // No sidebar ?>