Changeset 60552
- Timestamp:
- 08/05/2025 04:39:55 PM (3 months ago)
- Location:
- branches/5.6
- Files:
-
- 4 edited
- package-lock.json (modified) (1 diff)
- package.json (modified) (1 diff)
- src/wp-admin/about.php (modified) (1 diff)
- src/wp-includes/version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/5.6/package-lock.json
r58605 r60552 1 1 { 2 2 "name": "WordPress", 3 "version": "5.6.1 4",3 "version": "5.6.15", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
branches/5.6/package.json
r58512 r60552 1 1 { 2 2 "name": "WordPress", 3 "version": "5.6.1 4",3 "version": "5.6.15", 4 4 "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.", 5 5 "repository": { -
branches/5.6/src/wp-admin/about.php
r58512 r60552 80 80 /* translators: %s: WordPress version number */ 81 81 __( '<strong>Version %s</strong> addressed one security issue.' ), 82 '5.6.15' 83 ); 84 ?> 85 <?php 86 printf( 87 /* translators: %s: HelpHub URL */ 88 __( 'For more information, see <a href="%s">the release notes</a>.' ), 89 sprintf( 90 /* translators: %s: WordPress version */ 91 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 92 sanitize_title( '5.6.15' ) 93 ) 94 ); 95 ?> 96 </p> 97 <p> 98 <?php 99 printf( 100 /* translators: %s: WordPress version number */ 101 __( '<strong>Version %s</strong> addressed one security issue.' ), 82 102 '5.6.14' 83 103 ); -
branches/5.6/src/wp-includes/version.php
r58512 r60552 14 14 * @global string $wp_version 15 15 */ 16 $wp_version = '5.6.1 4-src';16 $wp_version = '5.6.15-src'; 17 17 18 18 /**
Note: See TracChangeset for help on using the changeset viewer.