Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
- add password type outside attributes to get correct Entity
  • Loading branch information
claytondaley committed Jan 28, 2015
commit 947929a30b84bc40be1c0bff6bcf35e66a4fe977
2 changes: 2 additions & 0 deletions src/ZfcUser/Form/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ public function __construct()

$this->add(array(
'name' => 'password',
'type' => 'password',
'options' => array(
'label' => 'Password',
),
Expand All @@ -54,6 +55,7 @@ public function __construct()

$this->add(array(
'name' => 'passwordVerify',
'type' => 'password',
'options' => array(
'label' => 'Password Verify',
),
Expand Down