Changeset 55776
- Timestamp:
- 05/16/2023 03:25:24 PM (7 months ago)
- Location:
- branches/4.3
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3/package-lock.json
r54584 r55776 1 1 { 2 2 "name": "WordPress", 3 "version": "4.3.3 0",3 "version": "4.3.31", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
branches/4.3/package.json
r54584 r55776 1 1 { 2 2 "name": "WordPress", 3 "version": "4.3.3 0",3 "version": "4.3.31", 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
r55389 r55776 109 109 110 110 <div class="changelog point-releases"> 111 <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 30 ); ?></h3> 111 <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 31 ); ?></h3> 112 <p> 113 <?php 114 printf( 115 /* translators: %s: WordPress version number */ 116 __( '<strong>Version %s</strong> addressed one security issue.' ), 117 '4.3.31' 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.31' ) 128 ) 129 ); 130 ?> 131 </p> 112 132 <p> 113 133 <?php -
branches/4.3/src/wp-admin/includes/ajax-actions.php
r45952 r55776 2060 2060 } 2061 2061 2062 if ( false === check_ajax_referer( 'set-attachment-thumbnail', '_ajax_nonce', false ) ) { 2063 wp_send_json_error(); 2064 } 2065 2062 2066 $post_ids = array(); 2063 2067 // For each URL, try to find its corresponding post ID. -
branches/4.3/src/wp-includes/js/media/views/frame/video-details.js
r33337 r55776 105 105 wp.ajax.send( 'set-attachment-thumbnail', { 106 106 data : { 107 _ajax_nonce: wp.media.view.settings.nonce.setAttachmentThumbnail, 107 108 urls: urls, 108 109 thumbnail_id: attachment.get( 'id' ) -
branches/4.3/src/wp-includes/media.php
r40165 r55776 2978 2978 'captions' => ! apply_filters( 'disable_captions', '' ), 2979 2979 'nonce' => array( 2980 'sendToEditor' => wp_create_nonce( 'media-send-to-editor' ), 2980 'sendToEditor' => wp_create_nonce( 'media-send-to-editor' ), 2981 'setAttachmentThumbnail' => wp_create_nonce( 'set-attachment-thumbnail' ), 2981 2982 ), 2982 2983 'post' => array( -
branches/4.3/src/wp-includes/version.php
r54584 r55776 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '4.3.3 0-src';7 $wp_version = '4.3.31-src'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.