Make WordPress Core


Ignore:
Timestamp:
11/19/2006 07:56:05 AM (19 years ago)
Author:
ryan
Message:

Remove trailing spaces and convert spaces to tabs. Props Nazgul. fixes #986

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/category-template.php

    r4277 r4495  
    188188        }
    189189
    190         if ( $show_option_none) { 
    191             $show_option_none = apply_filters('list_cats', $show_option_none);     
     190        if ( $show_option_none) {
     191            $show_option_none = apply_filters('list_cats', $show_option_none);
    192192            $output .= "\t<option value='-1'>$show_option_none</option>\n";
    193193        }
     
    227227
    228228    $categories = get_categories($r);
    229    
     229
    230230    $output = '';
    231231    if ( $title_li && 'list' == $style )
     
    250250    if ( $title_li && 'list' == $style )
    251251        $output .= '</ul></li>';
    252            
     252
    253253    echo apply_filters('list_cats', $output);
    254254}
Note: See TracChangeset for help on using the changeset viewer.