Ticket #2121: 2121.patch
File 2121.patch, 1.1 KB (added by , 8 years ago) |
---|
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php
7 7 public function __construct() { 8 8 // Basic behavior filters and actions. 9 9 add_filter( 'bbp_get_forum_pagination_count', '__return_empty_string' ); 10 add_filter( 'pre_option__bbp_edit_lock', array( $this, 'increase_edit_lock_time' ) ); 10 11 11 12 // Display-related filters and actions. 12 13 add_filter( 'bbp_topic_admin_links', array( $this, 'admin_links' ), 10, 3 ); … … 53 54 } 54 55 55 56 /** 57 * Increase bbPress' default edit lock time from 5 minutes to 1 hour. 58 * 59 * @return int Filtered edit lock time. 60 */ 61 function increase_edit_lock_time() { 62 return 60; 63 } 64 65 /** 56 66 * Remove some unneeded or redundant admin links for topics and replies, 57 67 * move less commonly used inline quick links to 'Topic Admin' sidebar section. 58 68 *