Skip to content

Commit 1df606e

Browse files
MAGETWO-70628: Missing link to reset password in forgot your password email
1 parent 495d0c4 commit 1df606e

File tree

1 file changed

+1
-27
lines changed

1 file changed

+1
-27
lines changed

app/code/Magento/Customer/Model/EmailNotification.php

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,6 @@ class EmailNotification implements EmailNotificationInterface
6060
self::NEW_ACCOUNT_EMAIL_CONFIRMATION => self::XML_PATH_CONFIRM_EMAIL_TEMPLATE,
6161
];
6262

63-
/**
64-
* Map of templates. Use for backward compatibility
65-
*/
66-
const TEMPLATE_MAP = [
67-
self::XML_PATH_FORGOT_EMAIL_TEMPLATE => self::XML_PATH_RESET_PASSWORD_TEMPLATE
68-
];
69-
7063
/**#@-*/
7164

7265
/**
@@ -248,7 +241,7 @@ private function sendEmailTemplate(
248241
$storeId = null,
249242
$email = null
250243
) {
251-
$templateId = $this->getTemplateId($template, 'store', $storeId);
244+
$templateId = $this->scopeConfig->getValue($template, 'store', $storeId);
252245
if ($email === null) {
253246
$email = $customer->getEmail();
254247
}
@@ -384,23 +377,4 @@ public function newAccount(
384377
$storeId
385378
);
386379
}
387-
388-
/**
389-
* Get templateId include considering template map
390-
*
391-
* @param string $template
392-
* @param string $scopeType
393-
* @param string $storeId
394-
* @return string
395-
*/
396-
private function getTemplateId($template, $scopeType, $storeId)
397-
{
398-
if (array_key_exists($template, self::TEMPLATE_MAP)) {
399-
$templateId = $this->scopeConfig->getValue(self::TEMPLATE_MAP[$template], $scopeType, $storeId);
400-
if ($templateId) {
401-
return $templateId;
402-
}
403-
}
404-
return $this->scopeConfig->getValue($template, $scopeType, $storeId);
405-
}
406380
}

0 commit comments

Comments
 (0)