Issue already fixed in OC v3.0.3.1 release. In admin/controller/mail/customer.php file,
find all instances of:
Code: Select all
if ($store_info) {
$store_name = html_entity_decode($store_info['name'], ENT_QUOTES, 'UTF-8');
$store_url = $store_info['url'];
} else {
$store_name = html_entity_decode($this->config->get('config_name'), ENT_QUOTES, 'UTF-8');
$store_url = HTTP_CATALOG;
}
replace all with:
Code: Select all
if ($store_info) {
$store_name = html_entity_decode($store_info['name'], ENT_QUOTES, 'UTF-8');
$store_url = $store_info['url'] . 'index.php?route=account/login';
} else {
$store_name = html_entity_decode($this->config->get('config_name'), ENT_QUOTES, 'UTF-8');
$store_url = HTTP_CATALOG . 'index.php?route=account/login';
}