Changeset 49460 for branches/5.3
- Timestamp:
- 10/30/2020 07:46:16 PM (4 years ago)
- Location:
- branches/5.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.3/package-lock.json
r49411 r49460 1 1 { 2 2 "name": "WordPress", 3 "version": "5.3. 5",3 "version": "5.3.6", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
branches/5.3/package.json
r49411 r49460 1 1 { 2 2 "name": "WordPress", 3 "version": "5.3. 5",3 "version": "5.3.6", 4 4 "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.", 5 5 "repository": { -
branches/5.3/src/wp-admin/about.php
r49411 r49460 55 55 <?php 56 56 printf( 57 /* translators: 1: WordPress version number, 2: Plural number of bugs. */ 58 _n( 59 '<strong>Version %1$s</strong> addressed %2$s bug.', 60 '<strong>Version %1$s</strong> addressed %2$s bugs.', 61 1 62 ), 63 '5.3.6', 64 number_format_i18n( 1 ) 65 ); 66 ?> 67 <?php 68 printf( 69 /* translators: %s: HelpHub URL */ 70 __( 'For more information, see <a href="%s">the release notes</a>.' ), 71 sprintf( 72 /* translators: %s: WordPress version */ 73 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 74 sanitize_title( '5.3.6' ) 75 ) 76 ); 77 ?> 78 </p> 79 <p> 80 <?php 81 printf( 57 82 /* translators: %s: WordPress version number */ 58 83 __( '<strong>Version %s</strong> addressed some security issues.' ), -
branches/5.3/src/wp-includes/version.php
r49411 r49460 14 14 * @global string $wp_version 15 15 */ 16 $wp_version = '5.3. 5-src';16 $wp_version = '5.3.6-src'; 17 17 18 18 /**
Note: See TracChangeset
for help on using the changeset viewer.