Changeset 3652
- Timestamp:
- 12/30/2011 02:14:55 AM (14 years ago)
- File:
-
- 1 edited
-
branches/plugin/bbp-includes/bbp-core-hooks.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-includes/bbp-core-hooks.php
r3646 r3652 156 156 157 157 // Before Delete/Trash/Untrash Reply 158 add_action( 'trash_post', 'bbp_trash_reply' ); 159 add_action( 'untrash_post', 'bbp_untrash_reply' ); 160 add_action( 'delete_post', 'bbp_delete_reply' ); 158 add_action( 'wp_trash_post', 'bbp_trash_reply' ); 159 add_action( 'trash_post', 'bbp_trash_reply' ); 160 add_action( 'untrash_post', 'bbp_untrash_reply' ); 161 add_action( 'delete_post', 'bbp_delete_reply' ); 161 162 162 163 // After Deleted/Trashed/Untrashed Reply … … 178 179 179 180 // Before Delete/Trash/Untrash Topic 180 add_action( 'trash_post', 'bbp_trash_topic' ); 181 add_action( 'untrash_post', 'bbp_untrash_topic' ); 182 add_action( 'delete_post', 'bbp_delete_topic' ); 181 add_action( 'wp_trash_post', 'bbp_trash_topic' ); 182 add_action( 'trash_post', 'bbp_trash_topic' ); 183 add_action( 'untrash_post', 'bbp_untrash_topic' ); 184 add_action( 'delete_post', 'bbp_delete_topic' ); 183 185 184 186 // After Deleted/Trashed/Untrashed Topic
Note: See TracChangeset
for help on using the changeset viewer.