Changeset 6802
- Timestamp:
- 02/13/2008 06:39:45 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment-template.php
r6777 r6802 583 583 * @return bool True if pings are accepted 584 584 */ 585 function pings_open( $post_id =NULL ) {585 function pings_open( $post_id = NULL ) { 586 586 587 587 $_post = get_post($post_id); 588 588 589 $open = ( 'open' == $ post->ping_status );589 $open = ( 'open' == $_post->ping_status ); 590 590 return apply_filters( 'pings_open', $open, $post_id ); 591 591 }
Note: See TracChangeset
for help on using the changeset viewer.