Make WordPress Core

Changeset 54900


Ignore:
Timestamp:
11/29/2022 10:03:36 PM (2 years ago)
Author:
peterwilsoncc
Message:

Security: Replace update nag to indicate end of support.

Replace update nag in WordPress 3.8 to indicate users need to update to a newer version of WordPress in order to continue receiving security updates.

Props peterwilsoncc, audrasjb.
Fixes #56786 for the 3.8 branch.

Location:
branches/3.8/src/wp-admin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/3.8/src/wp-admin/css/colors.css

    r27023 r54900  
    605605    -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1);
    606606    box-shadow:         0px 1px 1px 0px rgba(0,0,0,0.1);
     607}
     608
     609.update-nag-core-insecure {
     610    color: #fff;
     611    background-color: #ac1b1b;
     612    border-left-color: #cd5a5a;
     613}
     614
     615.update-nag-core-insecure a {
     616    color: #fff;
    607617}
    608618
  • branches/3.8/src/wp-admin/css/wp-admin.css

    r27023 r54900  
    14531453}
    14541454
     1455.update-nag-core-insecure {
     1456    font-weight: bold;
     1457}
     1458
     1459.update-nag-core-insecure > p:first-child {
     1460    margin-top: 0;
     1461}
     1462
     1463.update-nag-core-insecure > p:last-child {
     1464    margin-bottom: 0;
     1465}
     1466
     1467.update-nag-core-insecure a {
     1468    text-decoration: underline;
     1469}
     1470
    14551471.plugins .plugin-update {
    14561472    padding: 0;
  • branches/3.8/src/wp-admin/includes/update.php

    r26540 r54900  
    211211
    212212    if ( current_user_can('update_core') ) {
    213         $msg = sprintf( __('<a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> is available! <a href="%2$s">Please update now</a>.'), $cur->current, network_admin_url( 'update-core.php' ) );
     213        $msg       = sprintf( __('<a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> is available! <a href="%2$s">Please update now</a>.'), $cur->current, network_admin_url( 'update-core.php' ) );
     214        $msg_line2 = sprintf(
     215            /* translators: 1: WordPress version number, 2: Link to update WordPress */
     216            __( 'Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please <a href="%2$s">update to the latest version of WordPress</a>.' ),
     217            get_bloginfo( 'version', 'display' ),
     218            network_admin_url( 'update-core.php' )
     219        );
    214220    } else {
    215         $msg = sprintf( __('<a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> is available! Please notify the site administrator.'), $cur->current );
    216     }
    217     echo "<div class='update-nag'>$msg</div>";
     221        $msg       = sprintf( __('<a href="http://codex.wordpress.org/Version_%1$s">WordPress %1$s</a> is available! Please notify the site administrator.'), $cur->current );
     222        $msg_line2 = sprintf(
     223            /* translators: 1: WordPress version number, 2: Link to update WordPress */
     224            __( 'Important! Your version of WordPress (%1$s) is no longer supported, you will not receive any security updates for your website. To keep your site secure, please <a href="%2$s">update to the latest version of WordPress</a>.' ),
     225            get_bloginfo( 'version', 'display' ),
     226            __( 'https://wordpress.org/download/' )
     227        );
     228    }
     229    echo "<div class='update-nag update-nag-core-insecure'><p>$msg</p><p>$msg_line2</p></div>";
    218230}
    219231add_action( 'admin_notices', 'update_nag', 3 );
Note: See TracChangeset for help on using the changeset viewer.