From ef0d8265bca7578bbe25b96b9c305c1209188b34 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 17 Mar 2008 23:57:26 +0000 Subject: [PATCH] Add title attribute to edit tag link. see #6082 git-svn-id: https://develop.svn.wordpress.org/trunk@7367 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/template.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 1aba1372c1..00d8734204 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -238,11 +238,12 @@ function _tag_row( $tag, $class = '' ) { $count = number_format_i18n( $tag->count ); $count = ( $count > 0 ) ? "$count" : $count; + $name = apply_filters( 'term_name', $tag->name ); $out = ''; $out .= ''; $out .= ' '; - $out .= '' . - apply_filters( 'term_name', $tag->name ) . ''; + $out .= '' . + $name . ''; $out .= "$count"; $out .= '';