From 9559fc8ae1a9b3dc8d892bc2160edbdc4d1f0dbb Mon Sep 17 00:00:00 2001 From: Stephan Kasdorf Date: Sat, 19 Sep 2020 00:43:53 +0200 Subject: [PATCH] Version 0.9.5 beta - added missing value field for the email field --- core/c/typeemail.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/c/typeemail.php b/core/c/typeemail.php index 78e5b3f..2e79428 100644 --- a/core/c/typeemail.php +++ b/core/c/typeemail.php @@ -13,6 +13,7 @@ class TypeEmail extends FormAttributes implements IForm { private $_attributes = array( self::FORM_NAME => '', + self::FORM_VALUE => '', self::FORM_ATTRIBUTE_ID => '', self::FORM_ATTRIBUTE_CLASS => '', self::FORM_ATTRIBUTE_PLACEHOLDER => '', @@ -32,7 +33,7 @@ class TypeEmail extends FormAttributes implements IForm */ private function _setElement( ) { - $this->_element = '' . "\n"; + $this->_element = '' . "\n"; }