diff -r 7b1b88e27a20 -r 48c4eec2b7e6 wp/wp-admin/plugin-install.php --- a/wp/wp-admin/plugin-install.php Thu Sep 29 08:06:27 2022 +0200 +++ b/wp/wp-admin/plugin-install.php Fri Sep 05 18:40:08 2025 +0200 @@ -118,8 +118,8 @@ get_current_screen()->set_help_sidebar( '

' . __( 'For more information:' ) . '

' . - '

' . __( 'Documentation on Installing Plugins' ) . '

' . - '

' . __( 'Support' ) . '

' + '

' . __( 'Documentation on Installing Plugins' ) . '

' . + '

' . __( 'Support forums' ) . '

' ); get_current_screen()->set_screen_reader_content( @@ -134,6 +134,10 @@ * WordPress Administration Template Header. */ require_once ABSPATH . 'wp-admin/admin-header.php'; + +WP_Plugin_Dependencies::initialize(); +WP_Plugin_Dependencies::display_admin_notice_for_unmet_dependencies(); +WP_Plugin_Dependencies::display_admin_notice_for_circular_dependencies(); ?>
">