Make WordPress Core

Changeset 10949


Ignore:
Timestamp:
04/16/2009 06:12:41 PM (15 years ago)
Author:
ryan
Message:

Fix logic inversion. Props christmasboy81. fixes #7121

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/default/header.php

    r10945 r10949  
    2020<?php
    2121// Checks to see whether it needs a sidebar or not
    22 if ( !empty($withcomments) && !is_single() ) {
     22if ( empty($withcomments) && !is_single() ) {
    2323?>
    2424    #page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg-<?php bloginfo('text_direction'); ?>.jpg") repeat-y top; border: none; }
Note: See TracChangeset for help on using the changeset viewer.