Ticket #9967: ticket-9967.patch
| File ticket-9967.patch, 649 bytes (added by , 17 years ago) |
|---|
-
template.php
635 635 */ 636 636 function _tag_row( $tag, $class = '', $taxonomy = 'post_tag' ) { 637 637 $count = number_format_i18n( $tag->count ); 638 $count = ( $count > 0 ) ? "<a href='edit.php?tag=$tag->slug'>$count</a>" : $count; 638 $tagsel = ($taxonomy == 'post_tag' ? 'tag' : $taxonomy); 639 $count = ( $count > 0 ) ? "<a href='edit.php?$tagsel=$tag->slug'>$count</a>" : $count; 639 640 640 641 $name = apply_filters( 'term_name', $tag->name ); 641 642 $qe_data = get_term($tag->term_id, $taxonomy, object, 'edit');