Skip to:
Content

bbPress.org


Ignore:
Timestamp:
02/04/2011 04:27:36 AM (15 years ago)
Author:
johnjamesjacoby
Message:

When topics are deleted, recalculate the associated forum last active time. This includes possible subforums and walks up through parent forums setting the correct time.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-includes/bbp-hooks.php

    r2827 r2831  
    138138add_action( 'trash_post',  'bbp_unstick_topic' );
    139139add_action( 'delete_post', 'bbp_unstick_topic' );
     140
     141// Update forum last active
     142add_action( 'trashed_post',        'bbp_update_forum_last_active' );
     143add_action( 'untrashed_post',      'bbp_update_forum_last_active' );
     144add_action( 'deleted_post',        'bbp_update_forum_last_active' );
    140145
    141146// Update forum topic counts
Note: See TracChangeset for help on using the changeset viewer.