]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/customize/class-wp-customize-selective-refresh.php
WordPress 4.7-scripts
[autoinstalls/wordpress.git] / wp-includes / customize / class-wp-customize-selective-refresh.php
index 245d32a27bc4bf95067c10aadcdc29eebb075085..2342aef9baa421e7fc60a701b9f6d96cd8eea376 100644 (file)
@@ -184,6 +184,10 @@ final class WP_Customize_Selective_Refresh {
                        'renderQueryVar' => self::RENDER_QUERY_VAR,
                        'l10n'           => array(
                                'shiftClickToEdit' => __( 'Shift-click to edit this element.' ),
+                               'clickEditMenu' => __( 'Click to edit this menu.' ),
+                               'clickEditWidget' => __( 'Click to edit this widget.' ),
+                               'clickEditTitle' => __( 'Click to edit the site title.' ),
+                               'clickEditMisc' => __( 'Click to edit this element.' ),
                                /* translators: %s: document.write() */
                                'badDocumentWrite' => sprintf( __( '%s is forbidden' ), 'document.write()' ),
                        ),
@@ -307,19 +311,15 @@ final class WP_Customize_Selective_Refresh {
                        return;
                }
 
-               $this->manager->remove_preview_signature();
-
                /*
                 * Note that is_customize_preview() returning true will entail that the
                 * user passed the 'customize' capability check and the nonce check, since
                 * WP_Customize_Manager::setup_theme() is where the previewing flag is set.
                 */
                if ( ! is_customize_preview() ) {
-                       status_header( 403 );
-                       wp_send_json_error( 'expected_customize_preview' );
+                       wp_send_json_error( 'expected_customize_preview', 403 );
                } else if ( ! isset( $_POST['partials'] ) ) {
-                       status_header( 400 );
-                       wp_send_json_error( 'missing_partials' );
+                       wp_send_json_error( 'missing_partials', 400 );
                }
 
                $partials = json_decode( wp_unslash( $_POST['partials'] ), true );