Changeset 42494 for branches/4.9
- Timestamp:
- 01/16/2018 09:36:18 PM (8 years ago)
- Location:
- branches/4.9
- Files:
-
- 3 edited
-
package.json (modified) (1 diff)
-
src/wp-admin/about.php (modified) (1 diff)
-
src/wp-includes/version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9/package.json
r42197 r42494 1 1 { 2 2 "name": "WordPress", 3 "version": "4.9. 1",3 "version": "4.9.2", 4 4 "description": "WordPress is web software you can use to create a beautiful website or blog.", 5 5 "repository": { -
branches/4.9/src/wp-admin/about.php
r42316 r42494 33 33 <div class="changelog point-releases"> 34 34 <h3><?php _e( 'Maintenance and Security Releases' ); ?></h3> 35 <p> 36 <?php 37 printf( 38 /* translators: 1: WordPress version number, 2: plural number of bugs. */ 39 _n( 40 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', 41 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', 42 22 43 ), 44 '4.9.2', 45 number_format_i18n( 22 ) 46 ); 47 ?> 48 <?php 49 /* translators: %s: Codex URL */ 50 printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'https://codex.wordpress.org/Version_4.9.2' ); 51 ?> 52 </p> 35 53 <p> 36 54 <?php -
branches/4.9/src/wp-includes/version.php
r42316 r42494 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '4.9. 1-src';7 $wp_version = '4.9.2-src'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.