Changeset 14334
- Timestamp:
- 01/06/2025 03:59:49 AM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/login.php
r14294 r14334 15 15 16 16 // Redirect is validated at redirect time, just pass through whatever we can. 17 if ( ! empty( $_REQUEST['redirect_to'] ) ) {17 if ( ! empty( $_REQUEST['redirect_to'] ) && is_string( $_REQUEST['redirect_to'] ) ) { 18 18 $redirect = wp_unslash( $_REQUEST['redirect_to'] ); 19 19 } elseif ( $referer = wp_get_referer() ) { … … 48 48 49 49 <p id="nav"> 50 <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php _e( ' Password Lost and Found', 'wporg' ); ?>"><?php _e( 'Lostpassword?', 'wporg' ); ?></a> • 50 <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>" title="<?php _e( 'Lost your password?', 'wporg' ); ?>"><?php _e( 'Lost your password?', 'wporg' ); ?></a> • 51 51 <a href="<?php echo esc_url( wp_registration_url() ); ?>" title="<?php _e( 'Create an account', 'wporg' ); ?>"><?php _e( 'Create an account', 'wporg' ); ?></a> 52 52 </p>
Note: See TracChangeset
for help on using the changeset viewer.