Make WordPress Core


Ignore:
Timestamp:
09/03/2015 09:20:40 AM (9 years ago)
Author:
SergeyBiryukov
Message:

Provide more helpful feedback than just "Cheatin' uh?" for permission errors in wp-includes/class-wp-customize-manager.php.

props kraftbj.
fixes #33684. see #14530.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-manager.php

    r33329 r33889  
    219219            auth_redirect();
    220220        } elseif ( $doing_ajax_or_is_customized && ! is_user_logged_in() ) {
    221             $this->wp_die( 0 );
     221            $this->wp_die( 0, 'You must be logged in to complete this action.' );
    222222        }
    223223
     
    225225
    226226        if ( ! current_user_can( 'customize' ) ) {
    227             $this->wp_die( -1 );
     227            $this->wp_die( -1, 'You are not allowed to customize the appearance of this site.' );
    228228        }
    229229
     
    239239            // switch_themes cap, bail.
    240240            if ( ! current_user_can( 'switch_themes' ) ) {
    241                 $this->wp_die( -1 );
     241                $this->wp_die( -1, 'You are not allowed to edit theme options on this site.' );
    242242            }
    243243
    244244            // If the theme has errors while loading, bail.
    245245            if ( $this->theme()->errors() ) {
    246                 $this->wp_die( -1 );
     246                $this->wp_die( -1, $this->theme()->errors()->get_error_message() );
    247247            }
    248248
    249249            // If the theme isn't allowed per multisite settings, bail.
    250250            if ( ! $this->theme()->is_allowed() ) {
    251                 $this->wp_die( -1 );
     251                $this->wp_die( -1, 'The requested theme does not exist.' );
    252252            }
    253253        }
Note: See TracChangeset for help on using the changeset viewer.