Skip to content

Commit

Permalink
🔃 [EngCom] Public Pull Requests - 2.1-develop
Browse files Browse the repository at this point in the history
Accepted Public Pull Requests:
 - magento#16986: [Backport] Trim issue on customer confirmation form (by @gelanivishal)


Fixed GitHub Issues:
 - magento#6058: IE11 user login email validation fails if field has leading or trailing space (reported by @dnadle) has been fixed in magento#16986 by @gelanivishal in 2.1-develop branch
   Related commits:
     1. 2e4bcf1
  • Loading branch information
VladimirZaets authored Jul 21, 2018
2 parents 38b16d5 + 7ea2278 commit ff04f26
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div class="field email required">
<label for="email_address" class="label"><span><?php echo $block->escapeHtml(__('Email')) ?></span></label>
<div class="control">
<input type="email" name="email" id="email_address" class="input-text" value="<?php echo $this->helper(\Magento\Framework\EscapeHelper::class)->escapeHtmlAttr($block->getEmail()) ?>" data-validate="{required:true, 'validate-email':true}">
<input type="email" name="email" id="email_address" class="input-text" value="<?= $block->escapeHtmlAttr($block->getEmail()) ?>" data-validate="{required:true, 'validate-email':true}" data-mage-init='{"mage/trim-input":{}}'>
</div>
</div>
</fieldset>
Expand Down

0 comments on commit ff04f26

Please sign in to comment.