Skip to content

Commit

Permalink
Merge 2929310 into 961c45a
Browse files Browse the repository at this point in the history
  • Loading branch information
KenTanaka committed Jul 19, 2018
2 parents 961c45a + 2929310 commit 393e75b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Eccube/Form/Type/Front/ForgotType.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

use Eccube\Common\EccubeConfig;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\Validator\Constraints as Assert;

Expand Down Expand Up @@ -44,7 +44,7 @@ public function __construct(EccubeConfig $eccubeConfig)
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('login_email', TextType::class, [
$builder->add('login_email', EmailType::class, [
'attr' => [
'max_length' => $this->eccubeConfig['eccube_stext_len'],
],
Expand Down

0 comments on commit 393e75b

Please sign in to comment.