Link Links columns to link manager. Props nacin. fixes #15994

git-svn-id: http://svn.automattic.com/wordpress/trunk@17159 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-12-27 16:57:19 +00:00
parent 84119f6e0b
commit 226e983063

View File

@ -303,6 +303,8 @@ class WP_Terms_List_Table extends WP_List_Table {
function column_links( $tag ) {
$count = number_format_i18n( $tag->count );
if ( $count )
$count = "<a href='link-manager.php?cat_id=$tag->term_id'>$count</a>";
return $count;
}