Make WordPress Core

Changeset 5715


Ignore:
Timestamp:
06/15/2007 06:26:43 PM (17 years ago)
Author:
rob1n
Message:

Show the name, not the slug. fixes #4473

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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 );
Note: See TracChangeset for help on using the changeset viewer.