Make WordPress Core

Ticket #3916: bookmark-template-php.diff

File bookmark-template-php.diff, 758 bytes (added by jhodgdon, 18 years ago)

Patch that adds spaces before the output of ratings

  • E:/EclipseWork/WordPressDev/wp-includes/bookmark-template.php

     
    136136
    137137                if ( $show_description && '' != $desc )
    138138                        $output .= $between . $desc;
    139 
     139                       
     140                if ( $show_rating )
     141                    $output .= " " . get_linkrating($row);
     142       
    140143                $output .= "$after\n";
    141144        } // end while
    142145
     
    304307
    305308                if ( $show_description && '' != $desc )
    306309                        $output .= $between . $desc;
     310
     311                if ( $show_rating )
     312                    $output .= " " . get_linkrating($bookmark);
     313
    307314                $output .= "$after\n";
    308315        } // end while
    309316