Make WordPress Core


Ignore:
Timestamp:
07/17/2014 09:11:46 AM (12 years ago)
Author:
DrewAPicture
Message:

Fix syntax for single- and multi-line comments in root-directory files.

See #28931.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-login.php

    r29030 r29205  
    7070        wp_admin_css( 'login', true );
    7171
    72         // Remove all stored post data on logging out.
    73         // This could be added by add_action('login_head'...) like wp_shake_js()
    74         // but maybe better if it's not removable by plugins
     72        /*
     73         * Remove all stored post data on logging out.
     74         * This could be added by add_action('login_head'...) like wp_shake_js(),
     75         * but maybe better if it's not removable by plugins
     76         */
    7577        if ( 'loggedout' == $wp_error->get_error_code() ) {
    7678                ?>
     
    297299        }
    298300
    299         // redefining user_login ensures we return the right case in the email
     301        // Redefining user_login ensures we return the right case in the email.
    300302        $user_login = $user_data->user_login;
    301303        $user_email = $user_data->user_email;
     
    310312         */
    311313        do_action( 'retreive_password', $user_login );
     314
    312315        /**
    313316         * Fires before a new password is retrieved.
     
    365368                $blogname = $GLOBALS['current_site']->site_name;
    366369        else
    367                 // The blogname option is escaped with esc_html on the way into the database in sanitize_option
    368                 // we want to reverse this for the plain text arena of emails.
     370                /*
     371                 * The blogname option is escaped with esc_html on the way into the database
     372                 * in sanitize_option we want to reverse this for the plain text arena of emails.
     373                 */
    369374                $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
    370375
Note: See TracChangeset for help on using the changeset viewer.