Changeset 47994
- Timestamp:
- 06/10/2020 09:31:53 PM (6 years ago)
- Location:
- branches/4.9
- Files:
-
- 3 edited
-
package.json (modified) (1 diff)
-
src/wp-admin/about.php (modified) (8 diffs)
-
src/wp-includes/version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9/package.json
r47671 r47994 1 1 { 2 2 "name": "WordPress", 3 "version": "4.9.1 4",3 "version": "4.9.15", 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
r47700 r47994 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.15' 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.15' ) 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.14' … … 44 64 <?php 45 65 printf( 46 /* translators: %s: HelpHub URL */66 /* translators: %s: HelpHub URL */ 47 67 __( 'For more information, see <a href="%s">the release notes</a>.' ), 48 68 sprintf( 49 /* translators: %s: WordPress version */69 /* translators: %s: WordPress version */ 50 70 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 51 71 sanitize_title( '4.9.14' ) … … 57 77 <?php 58 78 printf( 59 /* translators: %s: WordPress version number */79 /* translators: %s: WordPress version number */ 60 80 __( '<strong>Version %s</strong> addressed some security issues.' ), 61 81 '4.9.13' … … 64 84 <?php 65 85 printf( 66 /* translators: %s: HelpHub URL */86 /* translators: %s: HelpHub URL */ 67 87 __( 'For more information, see <a href="%s">the release notes</a>.' ), 68 88 sprintf( 69 /* translators: %s: WordPress version */89 /* translators: %s: WordPress version */ 70 90 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 71 91 sanitize_title( '4.9.13' ) … … 77 97 <?php 78 98 printf( 79 /* translators: %s: WordPress version number */99 /* translators: %s: WordPress version number */ 80 100 __( '<strong>Version %s</strong> addressed some security issues.' ), 81 101 '4.9.12' … … 84 104 <?php 85 105 printf( 86 /* translators: %s: HelpHub URL */106 /* translators: %s: HelpHub URL */ 87 107 __( 'For more information, see <a href="%s">the release notes</a>.' ), 88 108 sprintf( 89 /* translators: %s: WordPress version */109 /* translators: %s: WordPress version */ 90 110 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 91 111 sanitize_title( '4.9.12' ) … … 97 117 <?php 98 118 printf( 99 /* translators: %s: WordPress version number */119 /* translators: %s: WordPress version number */ 100 120 __( '<strong>Version %s</strong> addressed some security issues.' ), 101 121 '4.9.11' … … 104 124 <?php 105 125 printf( 106 /* translators: %s: HelpHub URL */126 /* translators: %s: HelpHub URL */ 107 127 __( 'For more information, see <a href="%s">the release notes</a>.' ), 108 128 sprintf( 109 /* translators: %s: WordPress version */129 /* translators: %s: WordPress version */ 110 130 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 111 131 sanitize_title( '4.9.11' ) -
branches/4.9/src/wp-includes/version.php
r47671 r47994 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '4.9.1 4-src';7 $wp_version = '4.9.15-src'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.