Changeset 50883 for branches/4.3
- Timestamp:
- 05/12/2021 11:21:47 PM (3 years ago)
- Location:
- branches/4.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3/package-lock.json
r50640 r50883 1 1 { 2 2 "name": "WordPress", 3 "version": "4.3.2 5",3 "version": "4.3.26", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
branches/4.3/package.json
r50640 r50883 1 1 { 2 2 "name": "WordPress", 3 "version": "4.3.2 5",3 "version": "4.3.26", 4 4 "description": "WordPress is web software you can use to create a beautiful website or blog.", 5 5 "repository": { -
branches/4.3/src/wp-admin/about.php
r49421 r50883 109 109 110 110 <div class="changelog point-releases"> 111 <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 25 ); ?></h3> 111 <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 26 ); ?></h3> 112 <p> 113 <?php 114 printf( 115 /* translators: %s: WordPress version number */ 116 __( '<strong>Version %1$s</strong> addressed a security issue.' ), 117 '4.3.26' 118 ); 119 ?> 120 <?php 121 printf( 122 /* translators: %s: HelpHub URL */ 123 __( 'For more information, see <a href="%s">the release notes</a>.' ), 124 sprintf( 125 /* translators: %s: WordPress version */ 126 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 127 sanitize_title( '4.3.26' ) 128 ) 129 ); 130 ?> 131 </p> 112 132 <p> 113 133 <?php -
branches/4.3/src/wp-includes/version.php
r49421 r50883 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '4.3.2 5-src';7 $wp_version = '4.3.26-src'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.