Changeset 7952 for trunk/bp-core/admin/bp-core-settings.php
- Timestamp:
- 02/21/2014 02:49:33 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/bp-core/admin/bp-core-settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/admin/bp-core-settings.php
r6456 r7952 100 100 <input id="bp-disable-blogforum-comments" name="bp-disable-blogforum-comments" type="checkbox" value="1" <?php checked( !bp_disable_blogforum_comments( false ) ); ?> /> 101 101 <label for="bp-disable-blogforum-comments"><?php _e( 'Allow activity stream commenting on blog and forum posts', 'buddypress' ); ?></label> 102 103 <?php 104 } 105 106 /** 107 * Allow Heartbeat to refresh activity stream. 108 * 109 * @since BuddyPress (2.0.0) 110 */ 111 function bp_admin_setting_callback_heartbeat() { 112 ?> 113 114 <input id="_bp_enable_heartbeat_refresh" name="_bp_enable_heartbeat_refresh" type="checkbox" value="1" <?php checked( bp_is_activity_heartbeat_active( true ) ); ?> /> 115 <label for="_bp_enable_heartbeat_refresh"><?php _e( 'Automatically check for new items while viewing the activity stream', 'buddypress' ); ?></label> 102 116 103 117 <?php
Note: See TracChangeset
for help on using the changeset viewer.