Changeset 43552
- Timestamp:
- 08/02/2018 08:12:09 PM (7 years ago)
- Location:
- branches/4.9/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9/src/wp-admin/about.php
r43528 r43552 37 37 <?php 38 38 printf( 39 /* translators: 1: WordPress version number, 2: plural number of bugs. */ 39 /* translators: 1: WordPress version number, 2: plural number of bugs. */ 40 _n( 41 '<strong>Version %1$s</strong> addressed %2$s bug.', 42 '<strong>Version %1$s</strong> addressed %2$s bugs.', 43 46 44 ), 45 '4.9.8', 46 number_format_i18n( 46 ) 47 ); 48 49 printf( 50 /* translators: %s: Codex URL */ 51 __( 'For more information, see <a href="%s">the release notes</a>.' ), 52 'https://codex.wordpress.org/Version_4.9.8' 53 ); 54 ?> 55 </p> 56 <p> 57 <?php 58 printf( 59 /* translators: 1: WordPress version number, 2: plural number of bugs. */ 40 60 _n( 41 61 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', -
branches/4.9/src/wp-includes/version.php
r43547 r43552 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '4.9.8- RC3-43547-src';7 $wp_version = '4.9.8-src'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.