Changeset 57165
- Timestamp:
- 12/06/2023 04:10:27 PM (14 months ago)
- Location:
- branches/6.4/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.4/src/wp-admin/about.php
r57112 r57165 46 46 <div class="about__section changelog has-subtle-background-color"> 47 47 <div class="column"> 48 <h2><?php _e( 'Maintenance Release' ); ?></h2>48 <h2><?php _e( 'Maintenance and Security Releases' ); ?></h2> 49 49 <p> 50 50 <?php … … 54 54 '<strong>Version %1$s</strong> addressed %2$s bug.', 55 55 '<strong>Version %1$s</strong> addressed %2$s bugs.', 56 1056 4 57 57 ), 58 58 '6.4.1', … … 68 68 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 69 69 sanitize_title( '6.4.1' ) 70 ) 71 ); 72 ?> 73 </p> 74 <p> 75 <?php 76 printf( 77 /* translators: 1: WordPress version number, 2: Plural number of bugs. */ 78 _n( 79 '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.', 80 '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.', 81 7 82 ), 83 '6.4.2', 84 '7' 85 ); 86 ?> 87 <?php 88 printf( 89 /* translators: %s: HelpHub URL. */ 90 __( 'For more information, see <a href="%s">the release notes</a>.' ), 91 sprintf( 92 /* translators: %s: WordPress version. */ 93 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 94 sanitize_title( '6.4.2' ) 70 95 ) 71 96 ); -
branches/6.4/src/wp-includes/version.php
r57098 r57165 17 17 * @global string $wp_version 18 18 */ 19 $wp_version = '6.4.2- alpha-57098-src';19 $wp_version = '6.4.2-src'; 20 20 21 21 /**
Note: See TracChangeset
for help on using the changeset viewer.