Changeset 59166
- Timestamp:
- 10/04/2024 01:17:35 PM (17 months ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
-
wp-admin/includes/class-wp-debug-data.php (modified) (1 diff)
-
wp-admin/includes/upgrade.php (modified) (1 diff)
-
wp-includes/blocks.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-debug-data.php
r59164 r59166 1248 1248 // List must use plugins if there are any. 1249 1249 $mu_plugins = get_mu_plugins(); 1250 $fields = array();1250 $fields = array(); 1251 1251 1252 1252 foreach ( $mu_plugins as $plugin_path => $plugin ) { -
trunk/src/wp-admin/includes/upgrade.php
r58994 r59166 993 993 $time_difference = $all_options->time_difference; 994 994 995 $server_time = time() + gmdate( 'Z' );996 $weblogger_time = $server_time + $time_difference * HOUR_IN_SECONDS;997 $gmt_time = time();995 $server_time = time() + gmdate( 'Z' ); 996 $weblogger_time = $server_time + $time_difference * HOUR_IN_SECONDS; 997 $gmt_time = time(); 998 998 999 999 $diff_gmt_server = ( $gmt_time - $server_time ) / HOUR_IN_SECONDS; -
trunk/src/wp-includes/blocks.php
r59132 r59166 2534 2534 if ( ! empty( $formats ) ) { 2535 2535 // Add the `post-format-` prefix. 2536 $terms = array_map(2536 $terms = array_map( 2537 2537 static function ( $format ) { 2538 2538 return "post-format-$format";
Note: See TracChangeset
for help on using the changeset viewer.