Skip to content

Commit 74dafb6

Browse files
committed
Merge pull request #440 from magento-tango/S56_PR
[Tango] S56 Bug Fixes
2 parents 8fa3fab + 2724571 commit 74dafb6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

app/code/Magento/Customer/view/email/account_new.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
-->
77
<!--@subject Welcome, {{var customer.name}}! @-->
88
<!--@vars
9-
{"store url=\"\"":"Store Url",
9+
{"store direct_url=\"\"":"Store Url",
1010
"var logo_url":"Email Logo Image Url",
1111
"escapehtml var=$customer.name":"Customer Name",
12-
"store url=\"customer/account/\"":"Customer Account Url",
12+
"store direct_url=\"customer/account/\"":"Customer Account Url",
1313
"var customer.email":"Customer Email",
1414
"escapehtml var=$customer.password":"Customer Password"}
1515
@-->
@@ -27,18 +27,18 @@
2727
<table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;">
2828
<tr>
2929
<td valign="top">
30-
<a href="{{store url=''}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
30+
<a href="{{store direct_url=''}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a></td>
3131
</tr>
3232
<!-- [ middle starts here] -->
3333
<tr>
3434
<td valign="top">
3535
<h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Dear {{escapehtml var=$customer.name}},</h1>
36-
<p style="font-size:12px; line-height:16px; margin:0 0 16px 0;">Welcome to {{var store.getFrontendName()}}. To sign in when visiting our site just click <a href="{{store url='customer/account/'}}" style="color:#1E7EC8;">Login</a> or <a href="{{store url='customer/account/'}}" style="color:#1E7EC8;">My Account</a> at the top of every page, and then enter your email address and password.</p>
36+
<p style="font-size:12px; line-height:16px; margin:0 0 16px 0;">Welcome to {{var store.getFrontendName()}}. To sign in when visiting our site just click <a href="{{store direct_url='customer/account/'}}" style="color:#1E7EC8;">Login</a> or <a href="{{store direct_url='customer/account/'}}" style="color:#1E7EC8;">My Account</a> at the top of every page, and then enter your email address and password.</p>
3737
<p style="border:1px solid #E0E0E0; font-size:12px; line-height:16px; margin:0; padding:13px 18px; background:#f9f9f9;">
3838
Use the following values when prompted to sign in:<br/>
3939
<strong>Email</strong>: {{var customer.email}}<br/>
4040
<strong>Password</strong>: Only you know that! (Hint: It’s the password you created at {{var store.getFrontendName()}})<br/>
41-
Forgot your Account password? No problems. Click <a href="{{store url='customer/account/createPassword/' _query_id=$customer.id _query_token=$customer.rp_token}}">here</a> to reset it.</p>
41+
Forgot your Account password? No problems. Click <a href="{{store direct_url='customer/account/createPassword/' _query_id=$customer.id _query_token=$customer.rp_token}}">here</a> to reset it.</p>
4242
</p>
4343
<p style="font-size:12px; line-height:16px; margin:0 0 8px 0;">When you sign in to your account, you will be able to do the following:</p>
4444
<ul style="font-size:12px; line-height:16px; margin:0 0 16px 0; padding:0;">

app/code/Magento/Webapi/Model/Soap/Wsdl/Generator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ protected function addCustomAttributeTypes($wsdl)
180180
{
181181
foreach ($this->customAttributeTypeLocator->getAllServiceDataInterfaces() as $customAttributeClass) {
182182
$typeName = $this->_typeProcessor->register($customAttributeClass);
183-
$wsdl->addComplexType($typeName);
183+
$wsdl->addComplexType($this->_typeProcessor->getArrayItemType($typeName));
184184
}
185185
return $wsdl;
186186
}

0 commit comments

Comments
 (0)