Fix logic inversion. Props christmasboy81. fixes #7121

git-svn-id: http://svn.automattic.com/wordpress/trunk@10949 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2009-04-16 18:12:41 +00:00
parent 4e62823c7a
commit 96c0d6faa1
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 ?>