Changeset 56175
- Timestamp:
- 07/09/2023 07:54:42 PM (17 months ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/menu-header.php
r55988 r56175 227 227 $aria_attributes .= ' aria-current="page"'; 228 228 } 229 // If plugin_page is set the parent must either match the current page or not physically exist. 230 // This allows plugin pages with the same hook to exist under different parents. 229 /* 230 * If plugin_page is set the parent must either match the current page or not physically exist. 231 * This allows plugin pages with the same hook to exist under different parents. 232 */ 231 233 } elseif ( 232 234 ( ! isset( $plugin_page ) && $self === $sub_item[2] ) -
trunk/src/wp-admin/update-core.php
r56171 r56175 851 851 } 852 852 853 // Allow relaxed file ownership writes for User-initiated upgrades when the API specifies 854 // that it's safe to do so. This only happens when there are no new files to create. 853 /* 854 * Allow relaxed file ownership writes for User-initiated upgrades when the API specifies 855 * that it's safe to do so. This only happens when there are no new files to create. 856 */ 855 857 $allow_relaxed_file_ownership = ! $reinstall && isset( $update->new_files ) && ! $update->new_files; 856 858 -
trunk/src/wp-admin/user-edit.php
r56150 r56175 922 922 var languageSelect = $( '#locale' ); 923 923 $( 'form' ).on( 'submit', function() { 924 // Don't show a spinner for English and installed languages, 925 // as there is nothing to download. 924 /* 925 * Don't show a spinner for English and installed languages, 926 * as there is nothing to download. 927 */ 926 928 if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) { 927 929 $( '#submit', this ).after( '<span class="spinner language-install-spinner is-active" />' );
Note: See TracChangeset
for help on using the changeset viewer.