Changeset 46508
- Timestamp:
- 10/14/2019 08:04:11 PM (5 years ago)
- Location:
- branches/5.2/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.2/src/wp-admin/about.php
r46046 r46508 54 54 <?php 55 55 printf( 56 /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */ 56 /* translators: %s: WordPress version number */ 57 __( '<strong>Version %s</strong> addressed some security issues.' ), 58 '5.2.4' 59 ); 60 ?> 61 <?php 62 printf( 63 /* translators: %s: HelpHub URL */ 64 __( 'For more information, see <a href="%s">the release notes</a>.' ), 65 sprintf( 66 /* translators: %s: WordPress version */ 67 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 68 sanitize_title( '5.2.4' ) 69 ) 70 ); 71 ?> 72 </p> 73 <p> 74 <?php 75 printf( 76 /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */ 57 77 _n( 58 78 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', … … 66 86 <?php 67 87 printf( 68 88 /* translators: %s: HelpHub URL */ 69 89 __( 'For more information, see <a href="%s">the release notes</a>.' ), 70 90 sprintf( 71 91 /* translators: %s: WordPress version */ 72 92 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 73 93 sanitize_title( '5.2.3' ) -
branches/5.2/src/wp-includes/version.php
r46065 r46508 14 14 * @global string $wp_version 15 15 */ 16 $wp_version = '5.2.4- alpha-46065-src';16 $wp_version = '5.2.4-src'; 17 17 18 18 /**
Note: See TracChangeset
for help on using the changeset viewer.