# 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
--- buddypress/bp-groups.php
+++ buddypress/bp-groups.php
@@ -726,7 +726,10 @@
 					bp_core_redirect( bp_get_group_permalink( $bp->groups->current_group ) . '/forum/topic/' . $topic_slug . '/' );
 				}
 				
-				bp_core_load_template( apply_filters( 'groups_template_group_forum_topic_edit', 'groups/single/forum/edit' ) );
+				if ( '' != locate_template( array( 'groups/single/forum/edit.php' ), false ) )
+					bp_core_load_template( apply_filters( 'groups_template_group_forum_topic_edit', 'groups/single/forum/edit' ) );
+				else
+					bp_core_load_template( apply_filters( 'groups_template_group_forum_topic_edit', 'groups/forum/edit' ) );
 			}
 			
 			/* Delete a post */
@@ -772,7 +775,10 @@
 					bp_core_redirect( bp_get_group_permalink( $bp->groups->current_group ) . '/forum/topic/' . $topic_slug . '/' );
 				}
 				
-				bp_core_load_template( apply_filters( 'groups_template_group_forum_topic_edit', 'groups/single/forum/edit' ) );
+				if ( '' != locate_template( array( 'groups/single/forum/edit.php' ), false ) )
+					bp_core_load_template( apply_filters( 'groups_template_group_forum_topic_edit', 'groups/single/forum/edit' ) );
+				else
+					bp_core_load_template( apply_filters( 'groups_template_group_forum_topic_edit', 'groups/forum/edit' ) );				
 			}
 
 			/* Standard topic display */
