Make WordPress Core


Ignore:
Timestamp:
03/02/2008 08:17:30 PM (18 years ago)
Author:
ryan
Message:

Remove trailing whites.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/dashboard.php

    r7088 r7130  
    111111            $arg, $arg, $arg... (further args passed to callbacks)
    112112        );
    113    
     113
    114114        // optional: if you want users to be able to edit the settings of your widget, you need to register a widget_control
    115115        wp_register_widget_control( $widget_id, $widget_control_title, $control_output_callback,
     
    317317            $date = '';
    318318            $link = clean_url( strip_tags( $item['link'] ) );
    319        
     319
    320320            if ( isset( $item['author_uri'] ) )
    321321                $site_link = clean_url( strip_tags( $item['author_uri'] ) );
    322        
     322
    323323            if ( !$publisher = wp_specialchars( strip_tags( isset($item['dc']['publisher']) ? $item['dc']['publisher'] : $item['author_name'] ) ) )
    324324                $publisher = __( 'Somebody' );
     
    327327            else
    328328                $publisher = "<strong>$publisher</strong>";
    329        
     329
    330330            if ( isset($item['description']) )
    331331                $content = $item['description'];
     
    344344            else
    345345                $text = _c( '%1$s linked here saying, "%3$s"|feed_display' );
    346        
     346
    347347            if ( $show_date ) {
    348348                if ( $show_author || $show_summary )
     
    352352                $date = gmdate( get_option( 'date_format' ), $date );
    353353            }
    354        
     354
    355355            echo "\t<li>" . sprintf( _c( "$text|feed_display" ), $publisher, $link, $content, $date ) . "</li>\n";
    356356        }
Note: See TracChangeset for help on using the changeset viewer.