Changeset 5569

Show
Ignore:
Timestamp:
05/28/07 04:39:40 (1 year ago)
Author:
markjaquith
Message:

permalink_link() is deprecated, and should reference its replacement.

Files:

Legend:

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

    r5563 r5569  
    480480} 
    481481 
     482// Use the_permalink(). 
     483function permalink_link() { 
     484    the_permalink(); 
     485} 
     486 
    482487?> 
  • trunk/wp-includes/link-template.php

    r5481 r5569  
    33 
    44function the_permalink() { 
    5     echo apply_filters('the_permalink', get_permalink()); 
    6 } 
    7  
    8  
    9 function permalink_link() { // For backwards compatibility 
    105    echo apply_filters('the_permalink', get_permalink()); 
    116}