Changeset 30356
- Timestamp:
- 11/16/2014 06:15:29 AM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/custom-header.php
r30327 r30356 740 740 check_admin_referer('custom-header-upload', '_wpnonce-custom-header-upload'); 741 741 if ( ! current_theme_supports( 'custom-header', 'uploads' ) ) 742 wp_die( __( 'Cheatin’ uh?' ) );742 wp_die( __( 'Cheatin’ uh?' ), 403 ); 743 743 744 744 if ( empty( $_POST ) && isset( $_GET['file'] ) ) { … … 891 891 892 892 if ( ! current_theme_supports( 'custom-header', 'uploads' ) ) 893 wp_die( __( 'Cheatin’ uh?' ) );893 wp_die( __( 'Cheatin’ uh?' ), 403 ); 894 894 895 895 if ( ! empty( $_POST['skip-cropping'] ) && ! ( current_theme_supports( 'custom-header', 'flex-height' ) || current_theme_supports( 'custom-header', 'flex-width' ) ) ) 896 wp_die( __( 'Cheatin’ uh?' ) );896 wp_die( __( 'Cheatin’ uh?' ), 403 ); 897 897 898 898 if ( $_POST['oitar'] > 1 ) { -
trunk/src/wp-admin/customize.php
r30306 r30356 14 14 15 15 if ( ! current_user_can( 'customize' ) ) { 16 wp_die( __( 'Cheatin’ uh?' ) );16 wp_die( __( 'Cheatin’ uh?' ), 403 ); 17 17 } 18 18 -
trunk/src/wp-admin/edit-comments.php
r27774 r30356 10 10 require_once( dirname( __FILE__ ) . '/admin.php' ); 11 11 if ( !current_user_can('edit_posts') ) 12 wp_die( __('Cheatin’ uh?'));12 wp_die( __( 'Cheatin’ uh?' ), 403 ); 13 13 14 14 $wp_list_table = _get_list_table('WP_Comments_List_Table'); -
trunk/src/wp-admin/edit-tags.php
r29821 r30356 19 19 20 20 if ( ! current_user_can( $tax->cap->manage_terms ) ) 21 wp_die( __( 'Cheatin’ uh?' ) );21 wp_die( __( 'Cheatin’ uh?' ), 403 ); 22 22 23 23 $wp_list_table = _get_list_table('WP_Terms_List_Table'); … … 48 48 49 49 if ( !current_user_can( $tax->cap->edit_terms ) ) 50 wp_die( __( 'Cheatin’ uh?' ) );50 wp_die( __( 'Cheatin’ uh?' ), 403 ); 51 51 52 52 $ret = wp_insert_term( $_POST['tag-name'], $taxonomy, $_POST ); … … 84 84 85 85 if ( !current_user_can( $tax->cap->delete_terms ) ) 86 wp_die( __( 'Cheatin’ uh?' ) );86 wp_die( __( 'Cheatin’ uh?' ), 403 ); 87 87 88 88 wp_delete_term( $tag_ID, $taxonomy ); … … 96 96 97 97 if ( !current_user_can( $tax->cap->delete_terms ) ) 98 wp_die( __( 'Cheatin’ uh?' ) );98 wp_die( __( 'Cheatin’ uh?' ), 403 ); 99 99 100 100 $tags = (array) $_REQUEST['delete_tags']; … … 134 134 135 135 if ( !current_user_can( $tax->cap->edit_terms ) ) 136 wp_die( __( 'Cheatin’ uh?' ) );136 wp_die( __( 'Cheatin’ uh?' ), 403 ); 137 137 138 138 $tag = get_term( $tag_ID, $taxonomy ); -
trunk/src/wp-admin/edit.php
r30155 r30356 26 26 27 27 if ( ! current_user_can( $post_type_object->cap->edit_posts ) ) 28 wp_die( __( 'Cheatin’ uh?' ) );28 wp_die( __( 'Cheatin’ uh?' ), 403 ); 29 29 30 30 $wp_list_table = _get_list_table('WP_Posts_List_Table'); -
trunk/src/wp-admin/includes/bookmark.php
r30203 r30356 28 28 function edit_link( $link_id = 0 ) { 29 29 if ( !current_user_can( 'manage_links' ) ) 30 wp_die( __( 'Cheatin’ uh?' ) );30 wp_die( __( 'Cheatin’ uh?' ), 403 ); 31 31 32 32 $_POST['link_url'] = esc_html( $_POST['link_url'] ); -
trunk/src/wp-admin/media-upload.php
r29206 r30356 33 33 // Require an ID for the edit screen. 34 34 if ( isset($action) && $action == 'edit' && !$ID ) 35 wp_die( __( 'Cheatin’ uh?' ) );35 wp_die( __( 'Cheatin’ uh?' ), 403 ); 36 36 37 37 if ( ! empty( $_REQUEST['post_id'] ) && ! current_user_can( 'edit_post' , $_REQUEST['post_id'] ) ) 38 wp_die( __( 'Cheatin’ uh?' ) );38 wp_die( __( 'Cheatin’ uh?' ), 403 ); 39 39 40 40 // Upload type: image, video, file, ..? -
trunk/src/wp-admin/nav-menus.php
r29900 r30356 21 21 // Permissions Check 22 22 if ( ! current_user_can('edit_theme_options') ) 23 wp_die( __( 'Cheatin’ uh?' ) );23 wp_die( __( 'Cheatin’ uh?' ), 403 ); 24 24 25 25 wp_enqueue_script( 'nav-menu' ); -
trunk/src/wp-admin/network/site-users.php
r28497 r30356 134 134 // If the user doesn't already belong to the blog, bail. 135 135 if ( !is_user_member_of_blog( $user_id ) ) 136 wp_die( __('Cheatin’ uh?'));136 wp_die( __( 'Cheatin’ uh?' ), 403 ); 137 137 138 138 $user = get_userdata( $user_id ); -
trunk/src/wp-admin/options.php
r30335 r30356 46 46 47 47 if ( !current_user_can( $capability ) ) 48 wp_die( __('Cheatin’ uh?'));48 wp_die( __( 'Cheatin’ uh?' ), 403 ); 49 49 50 50 // Handle admin email change requests … … 70 70 71 71 if ( is_multisite() && !is_super_admin() && 'update' != $action ) 72 wp_die( __('Cheatin’ uh?'));72 wp_die( __( 'Cheatin’ uh?' ), 403 ); 73 73 74 74 $whitelist_options = array( -
trunk/src/wp-admin/post-new.php
r29300 r30356 49 49 50 50 if ( ! current_user_can( $post_type_object->cap->edit_posts ) || ! current_user_can( $post_type_object->cap->create_posts ) ) 51 wp_die( __( 'Cheatin’ uh?' ) );51 wp_die( __( 'Cheatin’ uh?' ), 403 ); 52 52 53 53 // Schedule auto-draft cleanup -
trunk/src/wp-admin/press-this.php
r29961 r30356 15 15 16 16 if ( ! current_user_can( 'edit_posts' ) || ! current_user_can( get_post_type_object( 'post' )->cap->create_posts ) ) 17 wp_die( __( 'Cheatin’ uh?' ) );17 wp_die( __( 'Cheatin’ uh?' ), 403 ); 18 18 19 19 /** -
trunk/src/wp-admin/themes.php
r29961 r30356 11 11 12 12 if ( !current_user_can('switch_themes') && !current_user_can('edit_theme_options') ) 13 wp_die( __( 'Cheatin’ uh?' ) );13 wp_die( __( 'Cheatin’ uh?' ), 403 ); 14 14 15 15 if ( current_user_can( 'switch_themes' ) && isset($_GET['action'] ) ) { … … 18 18 $theme = wp_get_theme( $_GET['stylesheet'] ); 19 19 if ( ! $theme->exists() || ! $theme->is_allowed() ) 20 wp_die( __( 'Cheatin’ uh?' ) );20 wp_die( __( 'Cheatin’ uh?' ), 403 ); 21 21 switch_theme( $theme->get_stylesheet() ); 22 22 wp_redirect( admin_url('themes.php?activated=true') ); … … 26 26 $theme = wp_get_theme( $_GET['stylesheet'] ); 27 27 if ( !current_user_can('delete_themes') || ! $theme->exists() ) 28 wp_die( __( 'Cheatin’ uh?' ) );28 wp_die( __( 'Cheatin’ uh?' ), 403 ); 29 29 delete_theme($_GET['stylesheet']); 30 30 wp_redirect( admin_url('themes.php?deleted=true') ); -
trunk/src/wp-admin/user-new.php
r30033 r30356 12 12 if ( is_multisite() ) { 13 13 if ( ! current_user_can( 'create_users' ) && ! current_user_can( 'promote_users' ) ) 14 wp_die( __( 'Cheatin’ uh?' ) );14 wp_die( __( 'Cheatin’ uh?' ), 403 ); 15 15 } elseif ( ! current_user_can( 'create_users' ) ) { 16 wp_die( __( 'Cheatin’ uh?' ) );16 wp_die( __( 'Cheatin’ uh?' ), 403 ); 17 17 } 18 18 … … 56 56 57 57 if ( ! current_user_can('promote_user', $user_details->ID) ) 58 wp_die( __('Cheatin’ uh?'));58 wp_die( __( 'Cheatin’ uh?' ), 403 ); 59 59 60 60 // Adding an existing user to this blog … … 93 93 94 94 if ( ! current_user_can('create_users') ) 95 wp_die( __('Cheatin’ uh?'));95 wp_die( __( 'Cheatin’ uh?' ), 403 ); 96 96 97 97 if ( ! is_multisite() ) { -
trunk/src/wp-admin/users.php
r29707 r30356 11 11 12 12 if ( ! current_user_can( 'list_users' ) ) 13 wp_die( __( 'Cheatin’ uh?' ) );13 wp_die( __( 'Cheatin’ uh?' ), 403 ); 14 14 15 15 $wp_list_table = _get_list_table('WP_Users_List_Table'); … … 129 129 // If the user doesn't already belong to the blog, bail. 130 130 if ( is_multisite() && !is_user_member_of_blog( $id ) ) 131 wp_die( __('Cheatin’ uh?'));131 wp_die( __( 'Cheatin’ uh?' ), 403 ); 132 132 133 133 $user = get_userdata( $id ); -
trunk/src/wp-admin/widgets.php
r29206 r30356 14 14 15 15 if ( ! current_user_can('edit_theme_options') ) 16 wp_die( __( 'Cheatin’ uh?' ) );16 wp_die( __( 'Cheatin’ uh?' ), 403 ); 17 17 18 18 $widgets_access = get_user_setting( 'widgets_access' ); -
trunk/src/wp-includes/functions.php
r30355 r30356 2313 2313 */ 2314 2314 function wp_nonce_ays( $action ) { 2315 $title = __( 'WordPress Failure Notice' );2316 2315 if ( 'log-out' == $action ) { 2317 2316 $html = sprintf( __( 'You are attempting to log out of %s' ), get_bloginfo( 'name' ) ) . '</p><p>'; … … 2324 2323 } 2325 2324 2326 wp_die( $html, $title, array('response' => 403));2325 wp_die( $html, __( 'WordPress Failure Notice' ), 403 ); 2327 2326 } 2328 2327
Note: See TracChangeset
for help on using the changeset viewer.