# Patch for Deprecated Theme support for Editing Topic/Post for Forums component
# - Fixes missing template calls for edit.php for the old /bp-themes/ format
# r-a-y
|
|
|
726 | 726 | bp_core_redirect( bp_get_group_permalink( $bp->groups->current_group ) . '/forum/topic/' . $topic_slug . '/' ); |
727 | 727 | } |
728 | 728 | |
729 | | bp_core_load_template( apply_filters( 'groups_template_group_forum_topic_edit', 'groups/single/forum/edit' ) ); |
| 729 | if ( '' != locate_template( array( 'groups/single/forum/edit.php' ), false ) ) |
| 730 | bp_core_load_template( apply_filters( 'groups_template_group_forum_topic_edit', 'groups/single/forum/edit' ) ); |
| 731 | else |
| 732 | bp_core_load_template( apply_filters( 'groups_template_group_forum_topic_edit', 'groups/forum/edit' ) ); |
730 | 733 | } |
731 | 734 | |
732 | 735 | /* Delete a post */ |
… |
… |
|
772 | 775 | bp_core_redirect( bp_get_group_permalink( $bp->groups->current_group ) . '/forum/topic/' . $topic_slug . '/' ); |
773 | 776 | } |
774 | 777 | |
775 | | bp_core_load_template( apply_filters( 'groups_template_group_forum_topic_edit', 'groups/single/forum/edit' ) ); |
| 778 | if ( '' != locate_template( array( 'groups/single/forum/edit.php' ), false ) ) |
| 779 | bp_core_load_template( apply_filters( 'groups_template_group_forum_topic_edit', 'groups/single/forum/edit' ) ); |
| 780 | else |
| 781 | bp_core_load_template( apply_filters( 'groups_template_group_forum_topic_edit', 'groups/forum/edit' ) ); |
776 | 782 | } |
777 | 783 | |
778 | 784 | /* Standard topic display */ |