You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check line 27 there is a paragraph tag ending but without its start:
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="action-content">
<h1>Hello {{htmlescape var=$customer.name}},</h1>
{{if customer.is_change_password}}
<p>We have received a request to change password associated with your account at {{var store.getFrontendName()}}.</p>
{{/if}}
{{if customer.is_change_email}}
<br>We have received a request to change email associated with your account at {{var store.getFrontendName()}}.<br />
<strong>Your new email is:</strong> {{var customer.email}}</p>
{{/if}}
<p>If you have not authorized this action, please contact us immediately {{depend store_phone}} at <a href="tel:{{var store_phone}}">{{var store_phone}}</a>{{/depend}}.</p>
</td>
</tr>
It should be a start paragraph tag <p> just before "We hare received a request [...]".
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="action-content">
<h1>Hello {{htmlescape var=$customer.name}},</h1>
{{if customer.is_change_password}}
<p>We have received a request to change password associated with your account at {{var store.getFrontendName()}}.</p>
{{/if}}
{{if customer.is_change_email}}
<br><p>We have received a request to change email associated with your account at {{var store.getFrontendName()}}.<br />
<strong>Your new email is:</strong> {{var customer.email}}</p>
{{/if}}
<p>If you have not authorized this action, please contact us immediately {{depend store_phone}} at <a href="tel:{{var store_phone}}">{{var store_phone}}</a>{{/depend}}.</p>
</td>
</tr>
The text was updated successfully, but these errors were encountered:
… group by (#1404)
* [BUGFIX] Count doesn't work with group by columns. This fix keeps the group by.
* [BUGFIX] - Fixed html structural error in pnepage checkout payments section. When using definition term and definition description this items should be located in a definition list.
* [BUGFIX] - Fixed missing opening paragraph in email-template as mentioned in #1401
* [BUGFIX] Added fix to prevent sql injections as recommended by @colinmollenhour
* Added @dbachmann as contributor
* Revert "[BUGFIX] - Fixed missing opening paragraph in email-template as mentioned in #1401"
This reverts commit 3e66cf9.
* Revert "[BUGFIX] - Fixed html structural error in pnepage checkout payments section. When using definition term and definition description this items should be located in a definition list."
This reverts commit 345ab99.
File: /app/locale/email/en_US/template/email/password_or_email_changed.html
Check line 27 there is a paragraph tag ending but without its start:
It should be a start paragraph tag
<p>
just before "We hare received a request [...]".The text was updated successfully, but these errors were encountered: