]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/press-this.php
WordPress 4.7.2
[autoinstalls/wordpress.git] / wp-admin / press-this.php
index 6f27a095398d5ce9b89bc59072d38866082fa3be..46322bc41c96930fa3b748b3d1bd54b3745192db 100644 (file)
@@ -11,14 +11,14 @@ define('IFRAME_REQUEST' , true);
 /** WordPress Administration Bootstrap */
 require_once( dirname( __FILE__ ) . '/admin.php' );
 
 /** WordPress Administration Bootstrap */
 require_once( dirname( __FILE__ ) . '/admin.php' );
 
-if ( ! current_user_can( 'edit_posts' ) || ! current_user_can( get_post_type_object( 'post' )->cap->create_posts ) )
-       wp_die( __( 'Cheatin’ uh?' ), 403 );
-
-/**
- * @global WP_Press_This $wp_press_this
- */
-if ( empty( $GLOBALS['wp_press_this'] ) ) {
-       include( ABSPATH . 'wp-admin/includes/class-wp-press-this.php' );
+if ( ! current_user_can( 'edit_posts' ) || ! current_user_can( get_post_type_object( 'post' )->cap->create_posts ) ) {
+       wp_die(
+               '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
+               '<p>' . __( 'Sorry, you are not allowed to create posts as this user.' ) . '</p>',
+               403
+       );
 }
 
 }
 
-$GLOBALS['wp_press_this']->html();
+include( ABSPATH . 'wp-admin/includes/class-wp-press-this.php' ); 
+$wp_press_this = new WP_Press_This();
+$wp_press_this->html();