Changeset 19027 for trunk/wp-includes/general-template.php
- Timestamp:
- 10/20/2011 02:40:11 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/general-template.php
r18963 r19027 289 289 * @param string $redirect Path to redirect to on login. 290 290 */ 291 function wp_lostpassword_url( $redirect = '') {291 function wp_lostpassword_url( $redirect = '' ) { 292 292 $args = array( 'action' => 'lostpassword' ); 293 293 if ( !empty($redirect) ) { … … 295 295 } 296 296 297 $lostpassword_url = add_query_arg( $args, site_url('wp-login.php', 'login'));298 return apply_filters( 'lostpassword_url', $lostpassword_url, $redirect);297 $lostpassword_url = add_query_arg( $args, network_site_url('wp-login.php', 'login') ); 298 return apply_filters( 'lostpassword_url', $lostpassword_url, $redirect ); 299 299 } 300 300
Note: See TracChangeset
for help on using the changeset viewer.