X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/03f2fa83c13c1b532284205fa7efcab9b8b2c41f..16e7b37c7914d753890c1a05a9335f3b43751eb8:/wp-admin/press-this.php diff --git a/wp-admin/press-this.php b/wp-admin/press-this.php index 62da1d3b..46322bc4 100644 --- a/wp-admin/press-this.php +++ b/wp-admin/press-this.php @@ -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( '

' . __( 'Cheatin’ uh?' ) . '

' . - '

' . __( 'You are not allowed to create posts as this user.' ) . '

', + '

' . __( 'Sorry, you are not allowed to create posts as this user.' ) . '

', 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();