Ticket #8892: 8892.3.patch
File 8892.3.patch, 2.8 KB (added by , 19 months ago) |
---|
-
src/bp-activity/bp-activity-admin.php
984 984 * @param object $item Activity item. 985 985 */ 986 986 function bp_activity_admin_edit_metabox_type( $item ) { 987 $bp = buddypress();988 987 989 988 $actions = array(); 990 989 $selected = $item->type; -
src/bp-activity/classes/class-bp-activity-list-table.php
95 95 $filter_query = false; 96 96 $include_id = false; 97 97 $search_terms = false; 98 $sort = 'DESC';99 98 $spam = 'ham_only'; 100 99 101 100 // Set current page. -
src/bp-core/admin/bp-core-admin-functions.php
1171 1171 ); 1172 1172 1173 1173 $tax_name = esc_attr( $r['taxonomy'] ); 1174 $taxonomy = get_taxonomy( $r['taxonomy'] );1175 1174 ?> 1176 1175 <div id="taxonomy-<?php echo $tax_name; ?>" class="categorydiv"> 1177 1176 <div id="<?php echo $tax_name; ?>-all" class="tabs-panel"> -
src/bp-core/admin/bp-core-admin-schema.php
613 613 function bp_core_install_nonmember_opt_outs() { 614 614 $sql = array(); 615 615 $charset_collate = $GLOBALS['wpdb']->get_charset_collate(); 616 $bp_prefix = bp_core_get_table_prefix();617 616 $optouts_class = new BP_Optout(); 618 617 $table_name = $optouts_class->get_table_name(); 619 618 $sql = "CREATE TABLE {$table_name} ( -
src/bp-core/bp-core-avatars.php
17 17 */ 18 18 function bp_core_set_avatar_constants() { 19 19 20 $bp = buddypress();21 22 20 if ( !defined( 'BP_AVATAR_THUMB_WIDTH' ) ) 23 21 define( 'BP_AVATAR_THUMB_WIDTH', 50 ); 24 22 -
src/bp-notifications/bp-notifications-functions.php
928 928 'order' => 'DESC', 929 929 ) ); 930 930 931 $user_data_to_export = array();932 933 931 foreach ( $notifications as $notification ) { 934 932 if ( 'xprofile' === $notification->component_name ) { 935 933 $component_name = 'profile';