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:
parent
bf7fa167fa
commit
112eae8b12
@ -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 ?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user