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