Changeset 15563 for trunk/wp-includes/link-template.php
- Timestamp:
- 09/04/2010 03:51:04 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/link-template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/link-template.php
r15549 r15563 462 462 * @return string 463 463 */ 464 function get_post_comments_feed_link($post_id = '', $feed = '') { 465 if ( !$post_id ) 464 function get_post_comments_feed_link($post_id = 0, $feed = '') { 465 $post_id = absint( $post_id ); 466 467 if ( ! $post_id ) 466 468 $post_id = get_the_ID(); 467 469 468 $post_id = absint($post_id); 469 470 if ( empty($feed) ) 470 if ( empty( $feed ) ) 471 471 $feed = get_default_feed(); 472 472
Note: See TracChangeset
for help on using the changeset viewer.