Changeset 47995 for branches/4.8
- Timestamp:
- 06/10/2020 09:32:07 PM (6 years ago)
- Location:
- branches/4.8
- Files:
-
- 3 edited
-
package.json (modified) (1 diff)
-
src/wp-admin/about.php (modified) (8 diffs)
-
src/wp-includes/version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.8/package.json
r47672 r47995 1 1 { 2 2 "name": "WordPress", 3 "version": "4.8.1 3",3 "version": "4.8.14", 4 4 "description": "WordPress is web software you can use to create a beautiful website or blog.", 5 5 "repository": { -
branches/4.8/src/wp-admin/about.php
r47698 r47995 49 49 <?php 50 50 printf( 51 /* translators: %s: WordPress version number */ 51 /* translators: %s: WordPress version number */ 52 __( '<strong>Version %s</strong> addressed some security issues.' ), 53 '4.8.14' 54 ); 55 ?> 56 <?php 57 printf( 58 /* translators: %s: HelpHub URL */ 59 __( 'For more information, see <a href="%s">the release notes</a>.' ), 60 sprintf( 61 /* translators: %s: WordPress version */ 62 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 63 sanitize_title( '4.8.14' ) 64 ) 65 ); 66 ?> 67 </p> 68 <p> 69 <?php 70 printf( 71 /* translators: %s: WordPress version number */ 52 72 __( '<strong>Version %s</strong> addressed some security issues.' ), 53 73 '4.8.13' … … 56 76 <?php 57 77 printf( 58 /* translators: %s: HelpHub URL */59 __( 'For more information, see <a href="%s">the release notes</a>.' ), 60 sprintf( 61 /* translators: %s: WordPress version */78 /* translators: %s: HelpHub URL */ 79 __( 'For more information, see <a href="%s">the release notes</a>.' ), 80 sprintf( 81 /* translators: %s: WordPress version */ 62 82 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 63 83 sanitize_title( '4.8.13' ) … … 69 89 <?php 70 90 printf( 71 /* translators: %s: WordPress version number */91 /* translators: %s: WordPress version number */ 72 92 __( '<strong>Version %s</strong> addressed some security issues.' ), 73 93 '4.8.12' … … 76 96 <?php 77 97 printf( 78 /* translators: %s: HelpHub URL */79 __( 'For more information, see <a href="%s">the release notes</a>.' ), 80 sprintf( 81 /* translators: %s: WordPress version */98 /* translators: %s: HelpHub URL */ 99 __( 'For more information, see <a href="%s">the release notes</a>.' ), 100 sprintf( 101 /* translators: %s: WordPress version */ 82 102 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 83 103 sanitize_title( '4.8.12' ) … … 89 109 <?php 90 110 printf( 91 /* translators: %s: WordPress version number */111 /* translators: %s: WordPress version number */ 92 112 __( '<strong>Version %s</strong> addressed some security issues.' ), 93 113 '4.8.11' … … 96 116 <?php 97 117 printf( 98 /* translators: %s: HelpHub URL */99 __( 'For more information, see <a href="%s">the release notes</a>.' ), 100 sprintf( 101 /* translators: %s: WordPress version */118 /* translators: %s: HelpHub URL */ 119 __( 'For more information, see <a href="%s">the release notes</a>.' ), 120 sprintf( 121 /* translators: %s: WordPress version */ 102 122 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 103 123 sanitize_title( '4.8.11' ) … … 109 129 <?php 110 130 printf( 111 /* translators: %s: WordPress version number */131 /* translators: %s: WordPress version number */ 112 132 __( '<strong>Version %s</strong> addressed some security issues.' ), 113 133 '4.8.10' … … 116 136 <?php 117 137 printf( 118 /* translators: %s: HelpHub URL */119 __( 'For more information, see <a href="%s">the release notes</a>.' ), 120 sprintf( 121 /* translators: %s: WordPress version */138 /* translators: %s: HelpHub URL */ 139 __( 'For more information, see <a href="%s">the release notes</a>.' ), 140 sprintf( 141 /* translators: %s: WordPress version */ 122 142 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 123 143 sanitize_title( '4.8.10' ) -
branches/4.8/src/wp-includes/version.php
r47672 r47995 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '4.8.1 3-src';7 $wp_version = '4.8.14-src'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.