Skip to:
Content

bbPress.org


Ignore:
Timestamp:
11/25/2012 09:33:09 AM (13 years ago)
Author:
johnjamesjacoby
Message:

Replies:

  • Add ability to move a reply into a new topic, or into an existing topic.
  • Includes new template part, new extra page template, and functions for handling the data move and template output.
  • Props jmdodd.
  • Fixes #1900.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/core/actions.php

    r4510 r4522  
    204204add_action( 'bbp_post_split_topic', 'bbp_split_topic_count', 1, 3 );
    205205
     206// Move Reply
     207add_action( 'bbp_post_move_reply', 'bbp_move_reply_count', 1, 3 );
     208
    206209// Before Delete/Trash/Untrash Topic
    207210add_action( 'wp_trash_post', 'bbp_trash_topic'   );
     
    282285add_action( 'bbp_template_redirect', 'bbp_split_topic_handler',     1  );
    283286add_action( 'bbp_template_redirect', 'bbp_toggle_topic_handler',    1  );
     287add_action( 'bbp_template_redirect', 'bbp_move_reply_handler',      1  );
    284288add_action( 'bbp_template_redirect', 'bbp_toggle_reply_handler',    1  );
    285289add_action( 'bbp_template_redirect', 'bbp_favorites_handler',       1  );
Note: See TracChangeset for help on using the changeset viewer.