File tree 3 files changed +4
-3
lines changed
dev/tests/integration/testsuite/Magento/Customer/Controller
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ public function getForgotPasswordUrl()
237
237
*/
238
238
public function getEmailConfirmationUrl ($ email = null )
239
239
{
240
- return $ this ->urlBuilder ->getUrl ('customer/account/confirmation ' , ['email ' => $ email ]);
240
+ return $ this ->urlBuilder ->getUrl ('customer/account/confirmation ' , ['_query ' => [ ' email ' => $ email] ]);
241
241
}
242
242
243
243
/**
Original file line number Diff line number Diff line change @@ -207,6 +207,7 @@ class Store extends AbstractExtensibleModel implements
207
207
* Flag that shows that backend URLs are secure
208
208
*
209
209
* @var boolean|null
210
+ * @deprecated unused protected property
210
211
*/
211
212
protected $ _isAdminSecure = null ;
212
213
Original file line number Diff line number Diff line change @@ -304,8 +304,8 @@ public function testWithConfirmCreatePostAction()
304
304
$ this ->assertSessionMessages (
305
305
$ this ->equalTo ([
306
306
'You must confirm your account. Please check your email for the confirmation link or '
307
- . '<a href="http://localhost/index.php/customer/account/confirmation/email/ '
308
- . 'test2%40email.com/ ">click here</a> for a new link. '
307
+ . '<a href="http://localhost/index.php/customer/account/confirmation/ '
308
+ . '?email= test2%40email.com">click here</a> for a new link. '
309
309
]),
310
310
MessageInterface::TYPE_SUCCESS
311
311
);
You can’t perform that action at this time.
0 commit comments