diff -r 490d5cc509ed -r cf61fcea0001 wp/wp-admin/themes.php --- a/wp/wp-admin/themes.php Tue Jun 09 11:14:17 2015 +0000 +++ b/wp/wp-admin/themes.php Mon Oct 14 17:39:30 2019 +0200 @@ -9,23 +9,50 @@ /** WordPress Administration Bootstrap */ require_once( dirname( __FILE__ ) . '/admin.php' ); -if ( !current_user_can('switch_themes') && !current_user_can('edit_theme_options') ) - wp_die( __( 'Cheatin’ uh?' ), 403 ); +if ( ! current_user_can( 'switch_themes' ) && ! current_user_can( 'edit_theme_options' ) ) { + wp_die( + '
' . __( 'Sorry, you are not allowed to edit theme options on this site.' ) . '
', + 403 + ); +} if ( current_user_can( 'switch_themes' ) && isset($_GET['action'] ) ) { if ( 'activate' == $_GET['action'] ) { check_admin_referer('switch-theme_' . $_GET['stylesheet']); $theme = wp_get_theme( $_GET['stylesheet'] ); - if ( ! $theme->exists() || ! $theme->is_allowed() ) - wp_die( __( 'Cheatin’ uh?' ), 403 ); + + if ( ! $theme->exists() || ! $theme->is_allowed() ) { + wp_die( + '' . __( 'The requested theme does not exist.' ) . '
', + 403 + ); + } + switch_theme( $theme->get_stylesheet() ); wp_redirect( admin_url('themes.php?activated=true') ); exit; } elseif ( 'delete' == $_GET['action'] ) { check_admin_referer('delete-theme_' . $_GET['stylesheet']); $theme = wp_get_theme( $_GET['stylesheet'] ); - if ( !current_user_can('delete_themes') || ! $theme->exists() ) - wp_die( __( 'Cheatin’ uh?' ), 403 ); + + if ( ! current_user_can( 'delete_themes' ) ) { + wp_die( + '' . __( 'Sorry, you are not allowed to delete this item.' ) . '
', + 403 + ); + } + + if ( ! $theme->exists() ) { + wp_die( + '' . __( 'The requested theme does not exist.' ) . '
', + 403 + ); + } + $active = wp_get_theme(); if ( $active->get( 'Template' ) == $_GET['stylesheet'] ) { wp_redirect( admin_url( 'themes.php?delete-active-child=true' ) ); @@ -62,7 +89,7 @@ if ( is_multisite() ) { $help_install = '' . __('Installing themes on Multisite can only be done from the Network Admin section.') . '
'; } else { - $help_install = '' . sprintf( __('If you would like to see more themes to choose from, click on the “Add New” button and you will be able to browse or search for additional themes from the WordPress.org Theme Directory. Themes in the WordPress.org Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!'), 'https://wordpress.org/themes/' ) . '
'; + $help_install = '' . sprintf( __('If you would like to see more themes to choose from, click on the “Add New” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!'), __( 'https://wordpress.org/themes/' ) ) . '
'; } get_current_screen()->add_help_tab( array( @@ -76,7 +103,7 @@ if ( current_user_can( 'edit_theme_options' ) && current_user_can( 'customize' ) ) { $help_customize = '' . __( 'Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way.' ) . '
'. - '' . __( 'The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Save & Activate button above the menu.' ) . '
' . + '' . __( 'The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Publish & Activate button above the menu.' ) . '
' . '' . __( 'When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again.' ) . '
'; get_current_screen()->add_help_tab( array( @@ -88,8 +115,8 @@ get_current_screen()->set_help_sidebar( '' . __( 'For more information:' ) . '
' . - '' . __( 'Documentation on Using Themes' ) . '
' . - '' . __( 'Support Forums' ) . '
' + '' . __( 'Documentation on Using Themes' ) . '
' . + '' . __( 'Support Forums' ) . '
' ); if ( current_user_can( 'switch_themes' ) ) { @@ -118,26 +145,31 @@ add_thickbox(); wp_enqueue_script( 'theme' ); -wp_enqueue_script( 'customize-loader' ); +wp_enqueue_script( 'updates' ); require_once( ABSPATH . 'wp-admin/admin-header.php' ); ?>Visit site' ), home_url( '/' ) ); ?>
Visit site' ), home_url( '/' ) ); ?>
' . sprintf( __( 'ERROR: %s' ), $ct->errors()->get_error_message() ) . '
' . __( 'ERROR:' ) . ' ' . $ct->errors()->get_error_message() . '