Changeset 52891
- Timestamp:
- 03/10/2022 10:18:13 PM (3 years ago)
- Location:
- branches/4.2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.2/package-lock.json
r52503 r52891 1 1 { 2 2 "name": "WordPress", 3 "version": "4.2.3 1",3 "version": "4.2.32", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
branches/4.2/package.json
r52503 r52891 1 1 { 2 2 "name": "WordPress", 3 "version": "4.2.3 1",3 "version": "4.2.32", 4 4 "description": "WordPress is web software you can use to create a beautiful website or blog.", 5 5 "repository": { -
branches/4.2/src/wp-admin/about.php
r52503 r52891 43 43 <div class="changelog point-releases"> 44 44 <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 31 ); ?></h3> 45 <p> 46 <?php 47 printf( 48 /* translators: %s: WordPress version number */ 49 __( '<strong>Version %1$s</strong> addressed a security issue.' ), 50 '4.2.32' 51 ); 52 ?> 53 <?php 54 printf( 55 /* translators: %s: HelpHub URL */ 56 __( 'For more information, see <a href="%s">the release notes</a>.' ), 57 sprintf( 58 /* translators: %s: WordPress version */ 59 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 60 sanitize_title( '4.2.32' ) 61 ) 62 ); 63 ?> 64 </p> 45 65 <p> 46 66 <?php -
branches/4.2/src/wp-includes/version.php
r52503 r52891 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '4.2.3 1-src';7 $wp_version = '4.2.32-src'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.