File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
dev/tests/integration/testsuite/Magento/Customer/Controller Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ public function getForgotPasswordUrl()
237237 */
238238 public function getEmailConfirmationUrl ($ email = null )
239239 {
240- return $ this ->urlBuilder ->getUrl ('customer/account/confirmation ' , ['email ' => $ email ]);
240+ return $ this ->urlBuilder ->getUrl ('customer/account/confirmation ' , ['_query ' => [ ' email ' => $ email] ]);
241241 }
242242
243243 /**
Original file line number Diff line number Diff line change @@ -207,6 +207,7 @@ class Store extends AbstractExtensibleModel implements
207207 * Flag that shows that backend URLs are secure
208208 *
209209 * @var boolean|null
210+ * @deprecated unused protected property
210211 */
211212 protected $ _isAdminSecure = null ;
212213
Original file line number Diff line number Diff line change @@ -304,8 +304,8 @@ public function testWithConfirmCreatePostAction()
304304 $ this ->assertSessionMessages (
305305 $ this ->equalTo ([
306306 '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. '
309309 ]),
310310 MessageInterface::TYPE_SUCCESS
311311 );
You can’t perform that action at this time.
0 commit comments