Make WordPress Core


Ignore:
Timestamp:
04/20/2009 06:18:39 PM (16 years ago)
Author:
ryan
Message:

Trailing whitespace cleanup

File:
1 edited

Legend:

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

    r10983 r11013  
    935935
    936936    $date = mysql2date(get_option('date_format'), $post->post_date);
    937    
     937
    938938    $title = str_replace('%title', $post->post_title, $title);
    939939    $title = str_replace('%date', $date, $title);
     
    10511051function get_boundary_post_rel_link($title = '%title', $in_same_cat = false, $excluded_categories = '', $start = true) {
    10521052        $posts = get_boundary_post($in_same_cat,$excluded_categories,$start);
    1053     // Even though we limited get_posts to return only 1 item it still returns an array of objects. 
    1054     $post = $posts[0]; 
     1053    // Even though we limited get_posts to return only 1 item it still returns an array of objects.
     1054    $post = $posts[0];
    10551055
    10561056        if ( empty($post) )
     
    11051105 */
    11061106function index_rel_link() {
    1107     echo get_index_rel_link(); 
     1107    echo get_index_rel_link();
    11081108}
    11091109
Note: See TracChangeset for help on using the changeset viewer.