Changeset 46510
- Timestamp:
- 10/14/2019 08:05:28 PM (4 years ago)
- Location:
- branches/5.0
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/package-lock.json
r46063 r46510 1 1 { 2 2 "name": "WordPress", 3 "version": "5.0. 6",3 "version": "5.0.7", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
branches/5.0/package.json
r46063 r46510 1 1 { 2 2 "name": "WordPress", 3 "version": "5.0. 6",3 "version": "5.0.7", 4 4 "description": "WordPress is web software you can use to create a beautiful website or blog.", 5 5 "repository": { -
branches/5.0/src/wp-admin/about.php
r46063 r46510 66 66 <?php 67 67 printf( 68 /* translators: %s: WordPress version number */ 68 /* translators: %s: WordPress version number */ 69 __( '<strong>Version %s</strong> addressed some security issues.' ), 70 '5.0.7' 71 ); 72 ?> 73 <?php 74 printf( 75 /* translators: %s: HelpHub URL */ 76 __( 'For more information, see <a href="%s">the release notes</a>.' ), 77 sprintf( 78 /* translators: %s: WordPress version */ 79 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 80 sanitize_title( '5.0.7' ) 81 ) 82 ); 83 ?> 84 </p> 85 <p> 86 <?php 87 printf( 88 /* translators: %s: WordPress version number */ 69 89 __( '<strong>Version %s</strong> addressed some security issues.' ), 70 90 '5.0.6' … … 73 93 <?php 74 94 printf( 75 95 /* translators: %s: HelpHub URL */ 76 96 __( 'For more information, see <a href="%s">the release notes</a>.' ), 77 97 sprintf( 78 98 /* translators: %s: WordPress version */ 79 99 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 80 100 sanitize_title( '5.0.6' ) -
branches/5.0/src/wp-includes/version.php
r46063 r46510 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '5.0. 6-src';7 $wp_version = '5.0.7-src'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.