Fixed default wc_lostpassword_url() args, closes #8800

This commit is contained in:
Claudio Sanches 2015-08-12 17:43:04 -03:00
parent 0c48134554
commit 6d79f7f02b
1 changed files with 4 additions and 3 deletions

View File

@ -128,19 +128,20 @@ function wc_edit_address_i18n( $id, $flip = false ) {
* Returns the url to the lost password endpoint url
*
* @access public
* @param string $default_url
* @return string
*/
function wc_lostpassword_url( $default_password_reset_url ) {
function wc_lostpassword_url( $default_url = '' ) {
$wc_password_reset_url = wc_get_page_permalink( 'myaccount' );
if ( false !== $wc_password_reset_url ) {
return wc_get_endpoint_url( 'lost-password', '', $wc_password_reset_url );
} else {
return $default_password_reset_url;
return $default_url;
}
}
add_filter( 'lostpassword_url', 'wc_lostpassword_url', 10, 1 );
/**
* Get the link to the edit account details page
*