Make WordPress Core

Changeset 16317


Ignore:
Timestamp:
11/12/2010 07:04:34 AM (14 years ago)
Author:
nacin
Message:

Typo fix. see #14424.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/category-template.php

    r16313 r16317  
    678678        $tag_id = isset($tags[ $key ]->id) ? $tags[ $key ]->id : $key;
    679679        $tag_name = $tags[ $key ]->name;
    680         $a[] = "<a href='$tag_link' class='tag-link-$tag_id' title='" . esc_attr( call_user_func( 'topic_count_text_callback', $real_count ) ) . "' style='font-size: " .
     680        $a[] = "<a href='$tag_link' class='tag-link-$tag_id' title='" . esc_attr( call_user_func( $topic_count_text_callback, $real_count ) ) . "' style='font-size: " .
    681681            ( $smallest + ( ( $count - $min_count ) * $font_step ) )
    682682            . "$unit;'>$tag_name</a>";
Note: See TracChangeset for help on using the changeset viewer.