Changeset 12541
- Timestamp:
- 01/29/2020 06:22:45 PM (5 years ago)
- Location:
- trunk/src/bp-core
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/admin/bp-core-admin-slugs.php
r11512 r12541 111 111 function bp_core_admin_slugs_options() { 112 112 113 // Get the existing WP pages 113 // Get the existing WP pages. 114 114 $existing_pages = bp_core_get_directory_page_ids(); 115 115 -
trunk/src/bp-core/bp-core-cache.php
r12428 r12541 7 7 * 8 8 * @package BuddyPress 9 * @su package Cache9 * @subpackage Cache 10 10 * @since 1.5.0 11 11 */ … … 81 81 } 82 82 83 // Bail if not on the root blog 83 // Bail if not on the root blog. 84 84 if ( ! bp_is_root_blog() ) { 85 85 return; … … 88 88 $page_ids = bp_core_get_directory_page_ids( 'all' ); 89 89 90 // Bail if post ID is not a directory page 90 // Bail if post ID is not a directory page. 91 91 if ( ! in_array( $post_id, $page_ids ) ) { 92 92 return; -
trunk/src/bp-core/bp-core-catchuri.php
r12404 r12541 98 98 $bkey = array_search( $chunk, $bp_uri ); 99 99 100 // ...and unset offending keys 100 // ...and unset offending keys. 101 101 if ( false !== $bkey ) { 102 102 unset( $bp_uri[$bkey] );
Note: See TracChangeset
for help on using the changeset viewer.