Changeset 46511
- Timestamp:
- 10/14/2019 08:06:08 PM (5 years ago)
- Location:
- branches/4.9
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9/package.json
r46043 r46511 1 1 { 2 2 "name": "WordPress", 3 "version": "4.9.1 1",3 "version": "4.9.12", 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
r46043 r46511 37 37 <?php 38 38 printf( 39 /* translators: %s: WordPress version number */ 39 /* translators: %s: WordPress version number */ 40 __( '<strong>Version %s</strong> addressed some security issues.' ), 41 '4.9.12' 42 ); 43 ?> 44 <?php 45 printf( 46 /* translators: %s: HelpHub URL */ 47 __( 'For more information, see <a href="%s">the release notes</a>.' ), 48 sprintf( 49 /* translators: %s: WordPress version */ 50 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 51 sanitize_title( '4.9.12' ) 52 ) 53 ); 54 ?> 55 </p> 56 <p> 57 <?php 58 printf( 59 /* translators: %s: WordPress version number */ 40 60 __( '<strong>Version %s</strong> addressed some security issues.' ), 41 61 '4.9.11' … … 44 64 <?php 45 65 printf( 46 66 /* translators: %s: HelpHub URL */ 47 67 __( 'For more information, see <a href="%s">the release notes</a>.' ), 48 68 sprintf( 49 69 /* translators: %s: WordPress version */ 50 70 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 51 71 sanitize_title( '4.9.11' ) -
branches/4.9/src/wp-includes/version.php
r46043 r46511 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '4.9.1 1-src';7 $wp_version = '4.9.12-src'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.