Make WordPress Core

Ticket #25116: link-templates.php.diff

File link-templates.php.diff, 532 bytes (added by pbiron, 11 years ago)

patch to \wp-includes\link-templates.php

  • wp-includes/link-template.php

     
    666666 * @return string HTML content.
    667667 */
    668668function edit_tag_link( $link = '', $before = '', $after = '', $tag = null ) {
    669         $link = edit_term_link( $link, '', '', false, $tag );
     669        $link = edit_term_link( $link, '', '', $tag, false );
    670670        echo $before . apply_filters( 'edit_tag_link', $link ) . $after;
    671671}
    672672