Make WordPress Core


Ignore:
Timestamp:
10/22/2013 05:21:32 PM (12 years ago)
Author:
nacin
Message:

Spell out duplicate hook locations.

props DrewAPicture.
fixes #25658.

File:
1 edited

Legend:

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

    r25701 r25868  
    620620if ( get_option( 'users_can_register' ) ) :
    621621    $registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
    622     //duplicate_hook
     622    /** This filter is documented in wp-login.php */
    623623    echo ' | ' . apply_filters( 'register', $registration_url );
    624624endif;
     
    766766            </div>
    767767            <?php
    768             //duplicate_hook
     768            /** This action is documented in wp-login.php */
    769769            do_action( 'login_footer' ); ?>
    770770            <?php if ( $customize_login ) : ?>
     
    870870    if ( get_option( 'users_can_register' ) ) :
    871871        $registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
    872         //duplicate_hook
     872        /** This filter is documented in wp-login.php */
    873873        echo apply_filters( 'register', $registration_url ) . ' | ';
    874874    endif;
Note: See TracChangeset for help on using the changeset viewer.