Make WordPress Core


Ignore:
Timestamp:
02/05/2008 06:47:27 AM (17 years ago)
Author:
ryan
Message:

Trailing whitespace cleanup

File:
1 edited

Legend:

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

    r6694 r6726  
    196196    if ( !empty($tag) ) {
    197197        $tag = get_term($tag, 'post_tag', OBJECT, 'display');
    198         if ( is_wp_error( $tag ) ) 
     198        if ( is_wp_error( $tag ) )
    199199            return $tag;
    200200        if ( ! empty($tag->name) )
     
    243243    else
    244244        $title = $prefix . $title;
    245    
     245
    246246    $title = apply_filters('wp_title', $title, $sep);
    247247
     
    298298    if ( !empty($tag_id) ) {
    299299        $my_tag = &get_term($tag_id, 'post_tag', OBJECT, 'display');
    300         if ( is_wp_error( $my_tag ) ) 
     300        if ( is_wp_error( $my_tag ) )
    301301            return false;
    302302        $my_tag_name = apply_filters('single_tag_title', $my_tag->name);
     
    934934            add_filter('the_editor_content', 'wp_richedit_pre');
    935935
    936         //  The following line moves the border so that the active button "attaches" to the toolbar. Only IE needs it. 
    937         ?> 
     936        //  The following line moves the border so that the active button "attaches" to the toolbar. Only IE needs it.
     937        ?>
    938938    <style type="text/css">
    939939        #postdivrich table, #postdivrich #quicktags {border-top: none;}
    940940        #quicktags {border-bottom: none; padding-bottom: 2px; margin-bottom: -1px;}
    941941    </style>
    942    
     942
    943943    <div id='editor-toolbar' style='display:none;'>
    944944        <div class='zerosize'><input accesskey='e' type='button' onclick='switchEditors.go("<?php echo $id; ?>")' /></div>
     
    10181018    $attributes = array();
    10191019    $output = '';
    1020        
     1020
    10211021    if ( $dir = get_bloginfo('text_direction') )
    10221022        $attributes[] = "dir=\"$dir\"";
    1023    
     1023
    10241024    if ( $lang = get_bloginfo('language') ) {
    10251025        if ( get_option('html_type') == 'text/html' || $doctype == 'xhtml' )
    10261026            $attributes[] = "lang=\"$lang\"";
    1027        
     1027
    10281028        if ( get_option('html_type') != 'text/html' || $doctype == 'xhtml' )
    10291029            $attributes[] = "xml:lang=\"$lang\"";
    10301030    }
    1031    
     1031
    10321032    $output = implode(' ', $attributes);
    10331033    $output = apply_filters('language_attributes', $output);
Note: See TracChangeset for help on using the changeset viewer.