Make WordPress Core

Ticket #9141: r10603.diff

File r10603.diff, 677 bytes (added by FFEMTcJ, 16 years ago)

Fix per instruction

  • wp-includes/category-template.php

     
    692692                $tag_id = isset($tags[ $key ]->id) ? $tags[ $key ]->id : $key;
    693693                $tag_name = $tags[ $key ]->name;
    694694                $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 ) ) )
    696696                        . "$unit;'>$tag_name</a>";
    697697        }
    698698