Changeset 1661

Show
Ignore:
Timestamp:
08/26/08 21:23:53 (3 months ago)
Author:
mdawaffe
Message:

get_post_author_title_link filter. Fixes #940

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/bb-includes/template-functions.php

    r1646 r1661  
    14611461                $r = '<a href="' . attribute_escape( get_user_profile_link( get_post_author_id( $post_id ) ) ) . '">' . $title . '</a>'; 
    14621462 
    1463         echo apply_filters( 'post_author_title_link', $r, get_post_id( $post_id ) ); 
     1463        echo apply_filters( 'get_post_author_title_link', $r, get_post_id( $post_id ) ); 
    14641464} 
    14651465