Ticket #9141: r10603.diff
File r10603.diff, 677 bytes (added by , 16 years ago) |
---|
-
wp-includes/category-template.php
692 692 $tag_id = isset($tags[ $key ]->id) ? $tags[ $key ]->id : $key; 693 693 $tag_name = $tags[ $key ]->name; 694 694 $a[] = "<a href='$tag_link' class='tag-link-$tag_id' title='" . attribute_escape( $topic_count_text_callback( $count ) ) . "'$rel style='font-size: " . 695 ( $smallest + ( ( $count - $min_count ) * $font_step) )695 str_replace(",", ".", ( $smallest + ( ( $count - $min_count ) * $font_step ) ) ) 696 696 . "$unit;'>$tag_name</a>"; 697 697 } 698 698