Index: sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php	(revision 5050)
+++ sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php	(working copy)
@@ -7,6 +7,7 @@
 	public function __construct() {
 		// Basic behavior filters and actions.
 		add_filter( 'bbp_get_forum_pagination_count', '__return_empty_string' );
+		add_filter( 'pre_option__bbp_edit_lock', array( $this, 'increase_edit_lock_time' ) );
 
 		// Display-related filters and actions.
 		add_filter( 'bbp_topic_admin_links', array( $this, 'admin_links' ), 10, 3 );
@@ -53,6 +54,15 @@
 	}
 
 	/**
+	 * Increase bbPress' default edit lock time from 5 minutes to 1 hour.
+	 *
+	 * @return int Filtered edit lock time.
+	 */
+	function increase_edit_lock_time() {
+		return 60;
+	}
+
+	/**
 	 * Remove some unneeded or redundant admin links for topics and replies,
 	 * move less commonly used inline quick links to 'Topic Admin' sidebar section.
 	 *
