Changeset 54595 for branches/4.9
- Timestamp:
- 10/17/2022 07:52:42 PM (2 years ago)
- Location:
- branches/4.9
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9/package-lock.json
r53998 r54595 1 1 { 2 2 "name": "WordPress", 3 "version": "4.9.2 1",3 "version": "4.9.22", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
branches/4.9/package.json
r53998 r54595 1 1 { 2 2 "name": "WordPress", 3 "version": "4.9.2 1",3 "version": "4.9.22", 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
r54451 r54595 34 34 <div class="changelog point-releases"> 35 35 <h3><?php _e( 'Maintenance and Security Releases' ); ?></h3> 36 <p> 37 <?php 38 printf( 39 /* translators: %s: WordPress version number */ 40 __( '<strong>Version %s</strong> addressed some security issues.' ), 41 '4.9.22' 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.22' ) 52 ) 53 ); 54 ?> 55 </p> 36 56 <p> 37 57 <?php -
branches/4.9/src/wp-includes/version.php
r53998 r54595 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '4.9.2 1-src';7 $wp_version = '4.9.22-src'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.