BUG - v1.1.3 - claim-listing.php, "Registering for an account" link redirect broken
When a user selects to claim a listing it is taken to the Claim Listing Page.
On this page it shows 2 links for login or register, examples:
"Logging in" =>
http://www.blabla.com/directory/logi...rchase%2F62%2F
"Registering for an account" =>
http://www.blabla.com/directory/register/
For the link "Registering for an account", it is missing the "redirect_to" which should send the user to the purchase page for the listing after they register.
The "claim-listing.php" code shows the following:
echo html_link( appthemes_get_registration_url( '', va_get_listing_purchase_url( get_queried_object_id() ) ), __( 'Registering for an account', APP_TD ) );
This code is
broken as it tries to obtain the "redirect_to" within the "appthemes_get_registration_url" function.
The above code tries passing in 2 arguments into the function "appthemes_get_registration_url" but this function does not accept 2 arguments.
Is there a fix to this or will it be fixed within the next release ?