Make WordPress Core


Ignore:
Timestamp:
06/14/2007 02:25:30 AM (18 years ago)
Author:
ryan
Message:

Trim empty lines. Nothing but newline.

File:
1 edited

Legend:

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

    r5625 r5700  
    6262function bloginfo($show='') {
    6363    $info = get_bloginfo($show);
    64    
     64
    6565    // Don't filter URL's.
    6666    if (strpos($show, 'url') === false &&
     
    323323function wp_get_archives($args = '') {
    324324    global $wpdb, $wp_locale;
    325    
     325
    326326    $defaults = array(
    327327        'type' => 'monthly', 'limit' => '',
     
    329329        'after' => '', 'show_post_count' => false
    330330    );
    331    
     331
    332332    $r = wp_parse_args( $args, $defaults );
    333333    extract( $r );
     
    594594    if ( $ak_post_titles ) {
    595595        foreach ( $ak_post_titles as $ak_post_title ) {
    596            
     596
    597597                $post_title = apply_filters( "the_title", $ak_post_title->post_title );
    598598                $post_title = str_replace('"', '"', wptexturize( $post_title ));
    599                                
     599
    600600                if ( empty($ak_titles_for_day['day_'.$ak_post_title->dom]) )
    601601                    $ak_titles_for_day['day_'.$ak_post_title->dom] = '';
     
    818818function user_can_richedit() {
    819819    global $wp_rich_edit, $pagenow;
    820    
     820
    821821    if ( !isset( $wp_rich_edit) ) {
    822822        if ( get_user_option( 'rich_editing' ) == 'true' &&
Note: See TracChangeset for help on using the changeset viewer.