Make WordPress Core


Ignore:
Timestamp:
08/09/2008 05:36:14 AM (17 years ago)
Author:
ryan
Message:

Trailing whitespace cleanup

File:
1 edited

Legend:

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

    r8502 r8600  
    8686            if ( empty($category) ) {
    8787                $default_category = get_category( get_option( 'default_category' ) );
    88                 $category = is_wp_error( $default_category ) ? '' : $default_category->slug; 
     88                $category = is_wp_error( $default_category ) ? '' : $default_category->slug;
    8989            }
    9090        }
     
    479479        break;
    480480    endswitch;
    481    
     481
    482482    return apply_filters( 'get_edit_post_link', admin_url("$file.php?{$action}$var=$post->ID"), $post->ID, $context );
    483483}
     
    781781 * @since 2.6
    782782 *
    783  * Returns the 'site_url' option with the appropriate protocol,  'https' if is_ssl() and 'http' otherwise. 
     783 * Returns the 'site_url' option with the appropriate protocol,  'https' if is_ssl() and 'http' otherwise.
    784784 * If $scheme is 'http' or 'https', is_ssl() is overridden.
    785785 *
Note: See TracChangeset for help on using the changeset viewer.