Changeset 5231

Show
Ignore:
Timestamp:
04/10/07 18:30:55 (2 years ago)
Author:
ryan
Message:

s/get_post_tags/wp_get_post_tags/ to match the rest of the API.

Files:

Legend:

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

    r5197 r5231  
    184184        return false; // in-the-loop function 
    185185 
    186     $tags = get_post_tags( $post->ID ); 
     186    $tags = wp_get_post_tags( $post->ID ); 
    187187    if ( empty( $tags ) ) 
    188188        return false; 
  • trunk/wp-includes/post.php

    r5212 r5231  
    459459} 
    460460 
    461 function get_post_tags( $post_id = 0 ) { 
     461function wp_get_post_tags( $post_id = 0 ) { 
    462462    global $tag_cache, $blog_id; 
    463463