Changeset 58502
- Timestamp:
- 06/24/2024 04:03:05 PM (5 months ago)
- Location:
- branches/6.5/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.5/src/wp-admin/about.php
r58342 r58502 45 45 <div class="column"> 46 46 <h2><?php _e( 'Maintenance and Security Release' ); ?></h2> 47 <p> 48 <?php 49 printf( 50 /* translators: 1: WordPress version number, 2: Plural number of bugs. */ 51 _n( 52 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', 53 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', 54 3 55 ), 56 '6.5.5', 57 '3' 58 ); 59 ?> 60 <?php 61 printf( 62 /* translators: %s: HelpHub URL. */ 63 __( 'For more information, see <a href="%s">the release notes</a>.' ), 64 sprintf( 65 /* translators: %s: WordPress version. */ 66 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 67 sanitize_title( '6.5.5' ) 68 ) 69 ); 70 ?> 71 </p> 47 72 <p> 48 73 <?php … … 69 94 ); 70 95 ?> 71 </p> 96 </p> 72 97 <p> 73 98 <?php -
branches/6.5/src/wp-includes/version.php
r58344 r58502 17 17 * @global string $wp_version 18 18 */ 19 $wp_version = '6.5.5- alpha-58344-src';19 $wp_version = '6.5.5-src'; 20 20 21 21 /**
Note: See TracChangeset
for help on using the changeset viewer.