summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/class.frame-nonce-preview.php')
-rw-r--r--plugins/jetpack/class.frame-nonce-preview.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/jetpack/class.frame-nonce-preview.php b/plugins/jetpack/class.frame-nonce-preview.php
index 623495e9..19c0f220 100644
--- a/plugins/jetpack/class.frame-nonce-preview.php
+++ b/plugins/jetpack/class.frame-nonce-preview.php
@@ -25,6 +25,12 @@ class Jetpack_Frame_Nonce_Preview {
if ( isset( $_GET['frame-nonce'] ) && ! is_admin() ) {
add_filter( 'pre_get_posts', array( $this, 'maybe_display_post' ) );
}
+
+ // autosave previews are validated differently
+ if ( isset( $_GET[ 'frame-nonce' ] ) && isset( $_GET[ 'preview_id' ] ) && isset( $_GET[ 'preview_nonce' ] ) ) {
+ remove_action( 'init', '_show_post_preview' );
+ add_action( 'init', array( $this, 'handle_autosave_nonce_validation' ) );
+ }
}
/**
@@ -95,6 +101,19 @@ class Jetpack_Frame_Nonce_Preview {
return $posts;
}
+
+ /**
+ * Handle validation for autosave preview request
+ *
+ * @since 4.7.0
+ *
+ */
+ public function handle_autosave_nonce_validation() {
+ if ( ! $this->is_frame_nonce_valid() ) {
+ wp_die( __( 'Sorry, you are not allowed to preview drafts.', 'jetpack' ) );
+ }
+ add_filter( 'the_preview', '_set_preview' );
+ }
}
Jetpack_Frame_Nonce_Preview::get_instance();