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:
parent
4e62823c7a
commit
96c0d6faa1
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
// Checks to see whether it needs a sidebar or not
|
// 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; }
|
#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg-<?php bloginfo('text_direction'); ?>.jpg") repeat-y top; border: none; }
|
||||||
<?php } else { // No sidebar ?>
|
<?php } else { // No sidebar ?>
|
||||||
|
|
Loading…
Reference in New Issue