Changeset 56273
- Timestamp:
- 07/20/2023 12:04:33 AM (17 months ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-debug-data.php
r56174 r56273 847 847 // Server time. 848 848 $date = new DateTime( 'now', new DateTimeZone( 'UTC' ) ); 849 $info['wp-server']['fields']['current'] = array( 849 850 $info['wp-server']['fields']['current'] = array( 850 851 'label' => __( 'Current time' ), 851 852 'value' => $date->format( DateTime::ATOM ), 852 853 ); 853 $info['wp-server']['fields']['utc-time'] = array(854 $info['wp-server']['fields']['utc-time'] = array( 854 855 'label' => __( 'Current UTC time' ), 855 856 'value' => $date->format( DateTime::RFC850 ), -
trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php
r55988 r56273 392 392 393 393 if ( is_subdomain_install() ) { 394 $ abbr= __( 'Domain' );394 $blogname_abbr = __( 'Domain' ); 395 395 $blogname_orderby_text = __( 'Table ordered by Site Domain Name.' ); 396 396 } else { 397 $ abbr= __( 'Path' );397 $blogname_abbr = __( 'Path' ); 398 398 $blogname_orderby_text = __( 'Table ordered by Site Path.' ); 399 399 } 400 400 401 401 return array( 402 'blogname' => array( 'blogname', false, $ abbr, $blogname_orderby_text ),402 'blogname' => array( 'blogname', false, $blogname_abbr, $blogname_orderby_text ), 403 403 'lastupdated' => array( 'lastupdated', true, __( 'Last Updated' ), __( 'Table ordered by Last Updated.' ) ), 404 404 'registered' => array( 'blog_id', true, _x( 'Registered', 'site' ), __( 'Table ordered by Site Registered Date.' ), 'desc' ), -
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r55971 r56273 765 765 766 766 if ( 'page' === $post_type ) { 767 $title_orderby_text = isset( $_GET['orderby'] ) ? __( 'Table ordered by Title.' ) : __( 'Table ordered by Hierarchical Menu Order and Title.' ); 767 if ( isset( $_GET['orderby'] ) ) { 768 $title_orderby_text = __( 'Table ordered by Title.' ); 769 } else { 770 $title_orderby_text = __( 'Table ordered by Hierarchical Menu Order and Title.' ); 771 } 772 768 773 $sortables = array( 769 774 'title' => array( 'title', false, __( 'Title' ), $title_orderby_text, 'asc' ), -
trunk/src/wp-includes/class-wp-scripts.php
r56246 r56273 965 965 } 966 966 967 $is_alias = (bool) ! $this->registered[ $handle ]->src;967 $is_alias = (bool) ! $this->registered[ $handle ]->src; 968 968 $intended_strategy = $this->get_data( $handle, 'strategy' ); 969 969 -
trunk/src/wp-includes/media.php
r56245 r56273 5621 5621 return $loading_attributes; 5622 5622 }; 5623 5623 5624 // Closure to increase media count for images with certain minimum threshold, mostly used for header images. 5624 5625 $maybe_increase_content_media_count = static function() use ( $attr ) { -
trunk/src/wp-includes/shortcodes.php
r56214 r56273 223 223 224 224 // Ensure this context is only added once if shortcodes are nested. 225 $has_filter = has_filter( 'wp_get_attachment_image_context', '_filter_do_shortcode_context' );225 $has_filter = has_filter( 'wp_get_attachment_image_context', '_filter_do_shortcode_context' ); 226 226 $filter_added = false; 227 227
Note: See TracChangeset
for help on using the changeset viewer.