Changeset 55775
- Timestamp:
- 05/16/2023 03:23:11 PM (19 months ago)
- Location:
- branches/4.2
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.2/package-lock.json
r54582 r55775 1 1 { 2 2 "name": "WordPress", 3 "version": "4.2.3 4",3 "version": "4.2.35", 4 4 "lockfileVersion": 1, 5 5 "requires": true, -
branches/4.2/package.json
r54582 r55775 1 1 { 2 2 "name": "WordPress", 3 "version": "4.2.3 4",3 "version": "4.2.35", 4 4 "description": "WordPress is web software you can use to create a beautiful website or blog.", 5 5 "repository": { -
branches/4.2/src/wp-admin/about.php
r55390 r55775 42 42 43 43 <div class="changelog point-releases"> 44 <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 34 ); ?></h3> 44 <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 35 ); ?></h3> 45 <p> 46 <?php 47 printf( 48 /* translators: %s: WordPress version number */ 49 __( '<strong>Version %1$s</strong> addressed a security issue.' ), 50 '4.2.35' 51 ); 52 ?> 53 <?php 54 printf( 55 /* translators: %s: HelpHub URL */ 56 __( 'For more information, see <a href="%s">the release notes</a>.' ), 57 sprintf( 58 /* translators: %s: WordPress version */ 59 esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), 60 sanitize_title( '4.2.35' ) 61 ) 62 ); 63 ?> 64 </p> 45 65 <p> 46 66 <?php -
branches/4.2/src/wp-admin/includes/ajax-actions.php
r45953 r55775 2025 2025 } 2026 2026 2027 if ( false === check_ajax_referer( 'set-attachment-thumbnail', '_ajax_nonce', false ) ) { 2028 wp_send_json_error(); 2029 } 2030 2027 2031 $post_ids = array(); 2028 2032 // For each URL, try to find its corresponding post ID. -
branches/4.2/src/wp-includes/js/media/views/frame/video-details.js
r33316 r55775 107 107 wp.ajax.send( 'set-attachment-thumbnail', { 108 108 data : { 109 _ajax_nonce: wp.media.view.settings.nonce.setAttachmentThumbnail, 109 110 urls: urls, 110 111 thumbnail_id: attachment.get( 'id' ) -
branches/4.2/src/wp-includes/media.php
r40166 r55775 2952 2952 'captions' => ! apply_filters( 'disable_captions', '' ), 2953 2953 'nonce' => array( 2954 'sendToEditor' => wp_create_nonce( 'media-send-to-editor' ), 2954 'sendToEditor' => wp_create_nonce( 'media-send-to-editor' ), 2955 'setAttachmentThumbnail' => wp_create_nonce( 'set-attachment-thumbnail' ), 2955 2956 ), 2956 2957 'post' => array( -
branches/4.2/src/wp-includes/version.php
r54582 r55775 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '4.2.3 4-src';7 $wp_version = '4.2.35-src'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.