diff --git a/core/c/formattributes.php b/core/c/formattributes.php index 5da834d..be1b841 100755 --- a/core/c/formattributes.php +++ b/core/c/formattributes.php @@ -63,6 +63,8 @@ class FormAttributes $this->_element = str_replace(' onsubmit="ONSUBMIT"', '', $this->_element); $this->_element = str_replace(' onclick="ONCLICK"', '', $this->_element); $this->_element = str_replace(' action="ACTION"', '', $this->_element); + $this->_element = str_replace(' maxlength="MAXLENGTH"', '', $this->_element); + $this->_element = str_replace(' tabindex="TABINDEX"', '', $this->_element); $this->_element = str_replace(' SPEECH', '', $this->_element); $this->_element = str_replace(' FORM', '', $this->_element); $this->_element = str_replace(' placeholder="PLACEHOLDER"', '', $this->_element); diff --git a/core/c/typetext.php b/core/c/typetext.php index 89e719c..0233e08 100644 --- a/core/c/typetext.php +++ b/core/c/typetext.php @@ -34,7 +34,7 @@ class TypeText extends FormAttributes implements IForm */ private function _setElement( ) { - $this->_element = '' . "\n"; + $this->_element = '' . "\n"; }