Make WordPress Core


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

Trim empty lines. Nothing but newline.

File:
1 edited

Legend:

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

    r5560 r5700  
    1010function wp_get_links($args = '') {
    1111    global $wpdb;
    12    
     12
    1313    if ( strpos( $args, '=' ) === false ) {
    1414        $cat_id = $args;
    1515        $args = add_query_arg( 'category', $cat_id, $args );
    1616    }
    17    
     17
    1818    $defaults = array(
    1919        'category' => -1, 'before' => '',
     
    2424        'echo' => true
    2525    );
    26    
     26
    2727    $r = wp_parse_args( $args, $defaults );
    2828    extract( $r );
     
    132132        if ( $show_description && '' != $desc )
    133133            $output .= $between . $desc;
    134        
     134
    135135        if ($show_rating) {
    136136            $output .= $between . get_linkrating($row);
     
    246246        'after' => '</li>', 'between' => "\n"
    247247    );
    248    
     248
    249249    $r = wp_parse_args( $args, $defaults );
    250250    extract( $r );
     
    303303        if ( $show_description && '' != $desc )
    304304            $output .= $between . $desc;
    305        
     305
    306306        if ($show_rating) {
    307307            $output .= $between . get_linkrating($bookmark);
    308308        }
    309        
     309
    310310        $output .= "$after\n";
    311311    } // end while
     
    326326        'category_after' => '</li>'
    327327    );
    328    
     328
    329329    $r = wp_parse_args( $args, $defaults );
    330330    extract( $r );
Note: See TracChangeset for help on using the changeset viewer.