Make WordPress Core

Ticket #3916: 3916.diff

File 3916.diff, 673 bytes (added by rob1n, 18 years ago)

Why not just use $between? That's what it's there for, no?

  • wp-includes/bookmark-template.php

     
    136136
    137137                if ( $show_description && '' != $desc )
    138138                        $output .= $between . $desc;
     139               
     140                if ($show_rating) {
     141                        $output .= $between . get_linkrating($row);
     142                }
    139143
    140144                $output .= "$after\n";
    141145        } // end while
     
    304308
    305309                if ( $show_description && '' != $desc )
    306310                        $output .= $between . $desc;
     311               
     312                if ($show_rating) {
     313                        $output .= $between . get_linkrating($bookmark);
     314                }
     315               
    307316                $output .= "$after\n";
    308317        } // end while
    309318