Version 0.9.5 beta - added form attribute disabled to the textfield

This commit is contained in:
Stephan Kasdorf
2020-09-29 20:43:08 +02:00
parent b297a2e40a
commit 419e047bc3
3 changed files with 5 additions and 2 deletions

View File

@@ -63,6 +63,7 @@ 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(' disabled="DISABLED"', '', $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);