diff -r c7c34916027a -r 177826044cd9 wp/wp-admin/themes.php --- a/wp/wp-admin/themes.php Mon Oct 14 18:06:33 2019 +0200 +++ b/wp/wp-admin/themes.php Mon Oct 14 18:28:13 2019 +0200 @@ -17,9 +17,9 @@ ); } -if ( current_user_can( 'switch_themes' ) && isset($_GET['action'] ) ) { +if ( current_user_can( 'switch_themes' ) && isset( $_GET['action'] ) ) { if ( 'activate' == $_GET['action'] ) { - check_admin_referer('switch-theme_' . $_GET['stylesheet']); + check_admin_referer( 'switch-theme_' . $_GET['stylesheet'] ); $theme = wp_get_theme( $_GET['stylesheet'] ); if ( ! $theme->exists() || ! $theme->is_allowed() ) { @@ -31,10 +31,30 @@ } switch_theme( $theme->get_stylesheet() ); - wp_redirect( admin_url('themes.php?activated=true') ); + wp_redirect( admin_url( 'themes.php?activated=true' ) ); + exit; + } elseif ( 'resume' === $_GET['action'] ) { + check_admin_referer( 'resume-theme_' . $_GET['stylesheet'] ); + $theme = wp_get_theme( $_GET['stylesheet'] ); + + if ( ! current_user_can( 'resume_theme', $_GET['stylesheet'] ) ) { + wp_die( + '

' . __( 'You need a higher level of permission.' ) . '

' . + '

' . __( 'Sorry, you are not allowed to resume this theme.' ) . '

', + 403 + ); + } + + $result = resume_theme( $theme->get_stylesheet(), self_admin_url( 'themes.php?error=resuming' ) ); + + if ( is_wp_error( $result ) ) { + wp_die( $result ); + } + + wp_redirect( admin_url( 'themes.php?resumed=true' ) ); exit; } elseif ( 'delete' == $_GET['action'] ) { - check_admin_referer('delete-theme_' . $_GET['stylesheet']); + check_admin_referer( 'delete-theme_' . $_GET['stylesheet'] ); $theme = wp_get_theme( $_GET['stylesheet'] ); if ( ! current_user_can( 'delete_themes' ) ) { @@ -64,12 +84,12 @@ } } -$title = __('Manage Themes'); +$title = __( 'Manage Themes' ); $parent_file = 'themes.php'; // Help tab: Overview if ( current_user_can( 'switch_themes' ) ) { - $help_overview = '

' . __( 'This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.' ) . '

' . + $help_overview = '

' . __( 'This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.' ) . '

' . '

' . __( 'From this screen you can:' ) . '

' . '