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