Make WordPress Core

Ticket #47235: 47235.3.diff

File 47235.3.diff, 1.8 KB (added by audrasjb, 5 years ago)

Refreshed and unified patch.

  • src/wp-admin/includes/plugin.php

    diff --git a/src/wp-admin/includes/plugin.php b/src/wp-admin/includes/plugin.php
    index ff87539798..829f62a878 100644
    a b function paused_plugins_notice() { 
    24212421                __( 'One or more plugins failed to load properly.' ),
    24222422                __( 'You can find more details and make changes on the Plugins screen.' ),
    24232423                esc_url( admin_url( 'plugins.php?plugin_status=paused' ) ),
    2424                 __( 'Go to the Plugins screen' )
     2424                __( 'Return to Plugins screen' )
    24252425        );
    24262426}
  • src/wp-admin/includes/theme.php

    diff --git a/src/wp-admin/includes/theme.php b/src/wp-admin/includes/theme.php
    index 2e8e0172d4..1bc6533469 100644
    a b function paused_themes_notice() { 
    931931                __( 'One or more themes failed to load properly.' ),
    932932                __( 'You can find more details and make changes on the Themes screen.' ),
    933933                esc_url( admin_url( 'themes.php' ) ),
    934                 __( 'Go to the Themes screen' )
     934                __( 'Return to Themes screen' )
    935935        );
    936936}
  • src/wp-admin/user-edit.php

    diff --git a/src/wp-admin/user-edit.php b/src/wp-admin/user-edit.php
    index 10e39e8b27..e488f74ce0 100644
    a b switch ( $action ) { 
    198198        <p><strong><?php _e( 'User updated.' ); ?></strong></p>
    199199        <?php endif; ?>
    200200                        <?php if ( $wp_http_referer && false === strpos( $wp_http_referer, 'user-new.php' ) && ! IS_PROFILE_PAGE ) : ?>
    201         <p><a href="<?php echo esc_url( wp_validate_redirect( esc_url_raw( $wp_http_referer ), self_admin_url( 'users.php' ) ) ); ?>"><?php _e( '&larr; Back to Users' ); ?></a></p>
     201        <p><a href="<?php echo esc_url( wp_validate_redirect( esc_url_raw( $wp_http_referer ), self_admin_url( 'users.php' ) ) ); ?>"><?php _e( 'Return to Users page' ); ?></a></p>
    202202        <?php endif; ?>
    203203</div>
    204204                <?php endif; ?>