Skip to content
Snippets Groups Projects
Commit fca7da47 authored by Shane Tomlinson's avatar Shane Tomlinson
Browse files

Start the verifyEmailAddress page controller even if there is no token.

To test:
* Make sure verification works if a valid token is given.
* Make sure error message is displayed if invalid token is given.
* Make sure error message is displayed if no token is given.

issue #1495
parent e5f87a33
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ $(function() {
verifyFunction: "verifyEmail"
});
}
else if(token && path === "/verify_email_address") {
else if(path === "/verify_email_address") {
var module = bid.verifySecondaryAddress.create();
module.start({
token: token,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment