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