Changeset 5583 for trunk/src/includes/core/actions.php
- Timestamp:
- 12/07/2014 08:42:18 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/includes/core/actions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/core/actions.php
r5500 r5583 238 238 239 239 // Update topic branch 240 add_action( 'bbp_trashed_topic', 'bbp_update_topic_walker' ); 241 add_action( 'bbp_untrashed_topic', 'bbp_update_topic_walker' ); 242 add_action( 'bbp_deleted_topic', 'bbp_update_topic_walker' ); 243 add_action( 'bbp_spammed_topic', 'bbp_update_topic_walker' ); 244 add_action( 'bbp_unspammed_topic', 'bbp_update_topic_walker' ); 240 add_action( 'bbp_trashed_topic', 'bbp_update_topic_walker' ); 241 add_action( 'bbp_untrashed_topic', 'bbp_update_topic_walker' ); 242 add_action( 'bbp_deleted_topic', 'bbp_update_topic_walker' ); 243 add_action( 'bbp_spammed_topic', 'bbp_update_topic_walker' ); 244 add_action( 'bbp_unspammed_topic', 'bbp_update_topic_walker' ); 245 add_action( 'bbp_approved_topic', 'bbp_update_topic_walker' ); 246 add_action( 'bbp_unapproved_topic', 'bbp_update_topic_walker' ); 245 247 246 248 // Update reply branch 247 add_action( 'bbp_trashed_reply', 'bbp_update_reply_walker' ); 248 add_action( 'bbp_untrashed_reply', 'bbp_update_reply_walker' ); 249 add_action( 'bbp_deleted_reply', 'bbp_update_reply_walker' ); 250 add_action( 'bbp_spammed_reply', 'bbp_update_reply_walker' ); 251 add_action( 'bbp_unspammed_reply', 'bbp_update_reply_walker' ); 249 add_action( 'bbp_trashed_reply', 'bbp_update_reply_walker' ); 250 add_action( 'bbp_untrashed_reply', 'bbp_update_reply_walker' ); 251 add_action( 'bbp_deleted_reply', 'bbp_update_reply_walker' ); 252 add_action( 'bbp_spammed_reply', 'bbp_update_reply_walker' ); 253 add_action( 'bbp_unspammed_reply', 'bbp_update_reply_walker' ); 254 add_action( 'bbp_approved_reply', 'bbp_update_reply_walker' ); 255 add_action( 'bbp_unapproved_reply', 'bbp_update_reply_walker' ); 252 256 253 257 // Users topic & reply counts
Note: See TracChangeset
for help on using the changeset viewer.