diff options
Diffstat (limited to 'lib/classes/forms/PasswordInput.php')
| -rw-r--r-- | lib/classes/forms/PasswordInput.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/classes/forms/PasswordInput.php b/lib/classes/forms/PasswordInput.php index 68e4718..535cbf2 100644 --- a/lib/classes/forms/PasswordInput.php +++ b/lib/classes/forms/PasswordInput.php @@ -9,7 +9,7 @@ class PasswordInput extends Input $template = $GLOBALS['template_factory']->open('forms/password_input'); $template->title = $this->title; $template->name = $this->name; - $template->value = $this->value; + $template->value = $this->getValue(); $template->id = md5(uniqid()); $template->required = $this->required; $template->attributes = arrayToHtmlAttributes($this->attributes); |
