Changeset 13497
- Timestamp:
- 06/04/2023 05:48:51 AM (17 months ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/bp-activity-admin.php
r13395 r13497 985 985 */ 986 986 function bp_activity_admin_edit_metabox_type( $item ) { 987 $bp = buddypress();988 987 989 988 $actions = array(); -
trunk/src/bp-activity/classes/class-bp-activity-list-table.php
r13146 r13497 96 96 $include_id = false; 97 97 $search_terms = false; 98 $sort = 'DESC';99 98 $spam = 'ham_only'; 100 99 -
trunk/src/bp-core/admin/bp-core-admin-functions.php
r13471 r13497 1146 1146 1147 1147 $tax_name = esc_attr( $r['taxonomy'] ); 1148 $taxonomy = get_taxonomy( $r['taxonomy'] );1149 1148 ?> 1150 1149 <div id="taxonomy-<?php echo $tax_name; ?>" class="categorydiv"> -
trunk/src/bp-core/admin/bp-core-admin-schema.php
r13395 r13497 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(); -
trunk/src/bp-core/bp-core-avatars.php
r13468 r13497 18 18 function bp_core_set_avatar_constants() { 19 19 20 $bp = buddypress(); 21 22 if ( !defined( 'BP_AVATAR_THUMB_WIDTH' ) ) 20 if ( ! defined( 'BP_AVATAR_THUMB_WIDTH' ) ) { 23 21 define( 'BP_AVATAR_THUMB_WIDTH', 50 ); 24 25 if ( !defined( 'BP_AVATAR_THUMB_HEIGHT' ) ) 22 } 23 24 if ( ! defined( 'BP_AVATAR_THUMB_HEIGHT' ) ) { 26 25 define( 'BP_AVATAR_THUMB_HEIGHT', 50 ); 27 28 if ( !defined( 'BP_AVATAR_FULL_WIDTH' ) ) 26 } 27 28 if ( ! defined( 'BP_AVATAR_FULL_WIDTH' ) ) { 29 29 define( 'BP_AVATAR_FULL_WIDTH', 150 ); 30 31 if ( !defined( 'BP_AVATAR_FULL_HEIGHT' ) ) 30 } 31 32 if ( ! defined( 'BP_AVATAR_FULL_HEIGHT' ) ) { 32 33 define( 'BP_AVATAR_FULL_HEIGHT', 150 ); 33 34 if ( !defined( 'BP_AVATAR_ORIGINAL_MAX_WIDTH' ) ) 34 } 35 36 if ( ! defined( 'BP_AVATAR_ORIGINAL_MAX_WIDTH' ) ) { 35 37 define( 'BP_AVATAR_ORIGINAL_MAX_WIDTH', 450 ); 36 37 if ( !defined( 'BP_AVATAR_ORIGINAL_MAX_FILESIZE' ) ) { 38 } 39 40 if ( ! defined( 'BP_AVATAR_ORIGINAL_MAX_FILESIZE' ) ) { 38 41 define( 'BP_AVATAR_ORIGINAL_MAX_FILESIZE', bp_attachments_get_max_upload_file_size( 'avatar' ) ); 39 42 } -
trunk/src/bp-notifications/bp-notifications-functions.php
r13442 r13497 929 929 ) ); 930 930 931 $user_data_to_export = array();932 933 931 foreach ( $notifications as $notification ) { 934 932 if ( 'xprofile' === $notification->component_name ) {
Note: See TracChangeset
for help on using the changeset viewer.