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