Changeset 41210
- Timestamp:
- 08/02/2017 08:57:42 PM (6 years ago)
- Location:
- branches/4.8/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.8/src/wp-admin/about.php
r40887 r41210 43 43 <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> 44 44 </h2> 45 46 <div class="changelog point-releases"> 47 <h3><?php _e( 'Maintenance Release' ); ?></h3> 48 <p> 49 <?php 50 printf( 51 /* translators: 1: WordPress version number, 2: plural number of bugs. */ 52 _n( 53 '<strong>Version %1$s</strong> addressed %2$s bug.', 54 '<strong>Version %1$s</strong> addressed %2$s bugs.', 55 29 56 ), 57 '4.8.1', 58 number_format_i18n( 29 ) 59 ); 60 ?> 61 <?php 62 /* translators: %s: Codex URL */ 63 printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'https://codex.wordpress.org/Version_4.8.1' ); 64 ?> 65 </p> 66 </div> 45 67 46 68 <div class="feature-section one-col"> -
branches/4.8/src/wp-includes/version.php
r41203 r41210 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '4.8.1- RC2-41202-src';7 $wp_version = '4.8.1-src'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.