Changeset 46037
- Timestamp:
- 09/04/2019 09:20:08 PM (6 years ago)
- Location:
- branches/4.3
- Files:
-
- 3 edited
-
package.json (modified) (1 diff)
-
src/wp-admin/about.php (modified) (1 diff)
-
src/wp-includes/version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3/package.json
r44880 r46037 1 1 { 2 2 "name": "WordPress", 3 "version": "4.3. 19",3 "version": "4.3.20", 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
r44880 r46037 109 109 110 110 <div class="changelog point-releases"> 111 <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 19 ); ?></h3> 111 <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 20 ); ?></h3> 112 <p> 113 <?php 114 printf( 115 /* translators: %s: WordPress version number */ 116 __( '<strong>Version %s</strong> addressed some security issues.' ), 117 '4.3.20' 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.20' ) 128 ) 129 ); 130 ?> 131 </p> 112 132 <p> 113 133 <?php -
branches/4.3/src/wp-includes/version.php
r44880 r46037 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '4.3. 19-src';7 $wp_version = '4.3.20-src'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.