diff -r 490d5cc509ed -r cf61fcea0001 wp/wp-admin/includes/theme-install.php --- a/wp/wp-admin/includes/theme-install.php Tue Jun 09 11:14:17 2015 +0000 +++ b/wp/wp-admin/includes/theme-install.php Mon Oct 14 17:39:30 2019 +0200 @@ -1,6 +1,6 @@ - +
- +

- - - + + + +
display(); } -// add_action('install_themes_search', 'display_themes'); -// add_action('install_themes_featured', 'display_themes'); -// add_action('install_themes_new', 'display_themes'); -// add_action('install_themes_updated', 'display_themes'); /** * Display theme information in dialog box form. * * @since 2.8.0 + * + * @global WP_Theme_Install_List_Table $wp_list_table */ function install_theme_information() { global $wp_list_table; @@ -194,7 +202,7 @@ if ( is_wp_error( $theme ) ) wp_die( $theme ); - iframe_header( __('Theme Install') ); + iframe_header( __('Theme Installation') ); if ( ! isset( $wp_list_table ) ) { $wp_list_table = _get_list_table('WP_Theme_Install_List_Table'); } @@ -202,4 +210,3 @@ iframe_footer(); exit; } -add_action('install_themes_pre_theme-information', 'install_theme_information');