From bc5e5bd300e81e4724ab216234f13719ec4a9c70 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 17 Mar 2008 23:57:26 +0000 Subject: [PATCH] Add title attribute to edit tag link. see #6082 git-svn-id: http://svn.automattic.com/wordpress/trunk@7367 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 .= '';