Changeset 5715

Show
Ignore:
Timestamp:
06/15/07 18:26:43 (1 year ago)
Author:
rob1n
Message:

Show the name, not the slug. fixes #4473

Files:

Legend:

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

    r5700 r5715  
    437437    $tag_list = $before; 
    438438    foreach ( $tags as $tag ) 
    439         $tag_links[] = '<a href="' . get_tag_link($tag->term_id) . '" rel="tag">' . $tag->slug . '</a>'; 
     439        $tag_links[] = '<a href="' . get_tag_link($tag->term_id) . '" rel="tag">' . $tag->name . '</a>'; 
    440440 
    441441    $tag_links = join( $sep, $tag_links );