Make WordPress Core

Ticket #48333: 48333.diff

File 48333.diff, 1.6 KB (added by desrosj, 5 years ago)
  • src/wp-admin/_index.php

     
    114114<div class="wrap">
    115115        <h1><?php echo esc_html( $title ); ?></h1>
    116116
     117        <?php if ( ! empty( $_GET['admin_email_remind_later'] ) ) : ?>
     118                <div class="notice notice-success is-dismissible">
     119                        <p>
     120                                <?php
     121                                printf(
     122                                        /* translators: %1$s: The number of comments. %2$s: The post title. */
     123                                        _n( 'The admin email verification page will reappear after %d day.', 'The admin email verification page will reappear after %d days.', 3 ),
     124                                        number_format_i18n( 3 )
     125                                );
     126                                ?>
     127                        </p>
     128                </div>
     129        <?php endif; ?>
     130
    117131<?php
    118132if ( has_action( 'welcome_panel' ) && current_user_can( 'edit_theme_options' ) ) :
    119133        $classes = 'welcome-panel';
  • src/wp-includes/functions.php

     
    11531153        $removable_query_args = array(
    11541154                'activate',
    11551155                'activated',
     1156                'admin_email_remind_later',
    11561157                'approved',
    11571158                'deactivate',
    11581159                'deleted',
  • src/wp-login.php

     
    578578                        // "Remind me later" is a bit ambiguous. Three days later?
    579579                        update_option( 'admin_email_lifespan', time() + 3 * DAY_IN_SECONDS );
    580580
     581                        $redirect_to = add_query_arg( 'admin_email_remind_later', 1, $redirect_to );
    581582                        wp_safe_redirect( $redirect_to );
    582583                        exit;
    583584                }