Make WordPress Core

Ticket #57999: 57999.1.diff

File 57999.1.diff, 955 bytes (added by pbiron, 19 months ago)
  • src/wp-admin/update-core.php

    diff --git a/src/wp-admin/update-core.php b/src/wp-admin/update-core.php
    index 53d3d73b60..8fc25fab0f 100644
    a b if ( 'upgrade-core' === $action ) { 
    10311031
    10321032        <?php
    10331033        if ( $upgrade_error ) {
    1034                 echo '<div class="error"><p>';
    10351034                if ( 'themes' === $upgrade_error ) {
    1036                         _e( 'Please select one or more themes to update.' );
     1035                        $theme_updates = get_theme_updates() ;
     1036                        if ( ! empty( $theme_updates ) ) {
     1037                                echo '<div class="error"><p>';
     1038                                _e( 'Please select one or more themes to update.' );
     1039                                echo '</p></div>';
     1040                        }
    10371041                } else {
    1038                         _e( 'Please select one or more plugins to update.' );
     1042                        $plugin_updates = get_plugin_updates() ;
     1043                        if ( ! empty( $plugin_updates ) ) {
     1044                                echo '<div class="error"><p>';
     1045                                _e( 'Please select one or more plugins to update.' );
     1046                                echo '</p></div>';
     1047                        }
    10391048                }
    1040                 echo '</p></div>';
    10411049        }
    10421050
    10431051        $last_update_check = false;