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