]> 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 62da1d3ba79d4806ed20709faa897b4087fa8f19..46322bc41c96930fa3b748b3d1bd54b3745192db 100644 (file)
@@ -14,16 +14,11 @@ 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(
                '<h1>' . __( 'Cheatin&#8217; uh?' ) . '</h1>' .
 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>' . __( 'You are not allowed to create posts as this user.' ) . '</p>',
+               '<p>' . __( 'Sorry, you are not allowed to create posts as this user.' ) . '</p>',
                403
        );
 }
 
                403
        );
 }
 
-/**
- * @global WP_Press_This $wp_press_this
- */
-if ( empty( $GLOBALS['wp_press_this'] ) ) {
-       include( ABSPATH . 'wp-admin/includes/class-wp-press-this.php' );
-}
-
-$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();