Changeset 3996
- Timestamp:
- 06/21/2012 04:36:10 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1/bb-includes/functions.bb-posts.php
r2912 r3996 627 627 */ 628 628 function bb_notify_subscribers( $post_id ) { 629 global $bbdb, $bb_ksd_pre_post_status; 630 631 if ( !empty( $bb_ksd_pre_post_status ) ) 632 return false; 629 global $bbdb; 633 630 634 631 if ( !$post = bb_get_post( $post_id ) ) 635 632 return false; 633 634 // bozo or spam 635 if ( 2 == $post->post_status ) 636 return false; 636 637 637 638 if ( !$topic = get_topic( $post->topic_id ) )
Note: See TracChangeset
for help on using the changeset viewer.