Changeset 13772
- Timestamp:
- 03/16/2024 07:35:00 AM (12 months ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/admin/bp-core-admin-functions.php
r13771 r13772 1562 1562 * @since 5.0.0 1563 1563 * @since 8.0.0 The `bp_block_category_post_types` filter has been deprecated. 1564 * @since 12.0.0 This category is left for third party plugin but not used anym more.1564 * @since 12.0.0 This category is left for third party plugin but not used anymore. 1565 1565 * 1566 1566 * @todo deprecate. -
trunk/src/bp-core/admin/bp-core-admin-rewrites.php
r13678 r13772 101 101 } 102 102 103 // Make sure the WP rewrites will be regen arated at next page load.103 // Make sure the WP rewrites will be regenerated at next page load. 104 104 if ( $reset_rewrites ) { 105 105 bp_delete_rewrite_rules(); … … 300 300 <h4 class="health-check-accordion-heading"> 301 301 <button aria-expanded="false" class="health-check-accordion-trigger" aria-controls="<?php echo esc_attr( sprintf( 'health-check-accordion-block-member-%s-secondary-nav', $members_navigation_slug ) ); ?>" type="button"> 302 <?php /* translators: %s is the BP Component name the second ery views belong to. */ ?>302 <?php /* translators: %s is the BP Component name the secondary views belong to. */ ?> 303 303 <span class="title"><?php echo esc_html( sprintf( __( 'Single Member %s secondary screens slugs', 'buddypress' ), _bp_strip_spans_from_title( $members_component_navigations['name'] ) ) ); ?></span> 304 304 <span class="icon"></span> -
trunk/src/bp-core/admin/bp-core-admin-types.php
r13108 r13772 97 97 } 98 98 99 // Get default evalues for metadata.99 // Get default values for metadata. 100 100 $metadata = bp_core_admin_get_type_default_meta_values( $type_taxonomy ); 101 101 … … 178 178 $type_taxonomy = sanitize_key( $args['taxonomy'] ); 179 179 180 // Get default evalues for metadata.180 // Get default values for metadata. 181 181 $metadata = bp_core_admin_get_type_default_meta_values( $type_taxonomy ); 182 182 … … 208 208 do_action( 'bp_type_updated', $type_term_id, $type_taxonomy ); 209 209 210 // Finally informs about the successful lupdate.210 // Finally informs about the successful update. 211 211 return true; 212 212 } … … 297 297 do_action( 'bp_type_deleted', $type_term_id, $type_taxonomy ); 298 298 299 // Finally informs about the successful ldelete.299 // Finally informs about the successful delete. 300 300 return true; 301 301 } -
trunk/src/bp-notifications/classes/class-bp-notifications-notification.php
r13499 r13772 222 222 * @global wpdb $wpdb WordPress database object. 223 223 * 224 * @see wpdb::insert() for further description of param ater formats.224 * @see wpdb::insert() for further description of parameter formats. 225 225 * 226 226 * @param array $data { … … 250 250 * @global wpdb $wpdb WordPress database object. 251 251 * 252 * @see wpdb::update() for further description of param ater formats.252 * @see wpdb::update() for further description of parameter formats. 253 253 * 254 254 * @param array $data Array of notification data to update, passed to … … 274 274 * @global wpdb $wpdb WordPress database object. 275 275 * 276 * @see wpdb::delete() for further description of param ater formats.276 * @see wpdb::delete() for further description of parameter formats. 277 277 * 278 278 * @param array $where Array of WHERE clauses to filter by, passed to
Note: See TracChangeset
for help on using the changeset viewer.