IText , remove double-quote
This commit is contained in:
parent
a51d055496
commit
a7236046a0
1 changed files with 3 additions and 0 deletions
|
|
@ -46,6 +46,9 @@ class IText extends HtmlInput
|
|||
if ( $this->readOnly==true) return $this->display();
|
||||
$this->id=($this->id=="")?$this->name:$this->id;
|
||||
|
||||
// Double quote makes troubles
|
||||
$this->value=str_replace('"','',$this->value);
|
||||
|
||||
$t= 'title="'.$this->title.'" ';
|
||||
$autofocus=($this->autofocus)?" autofocus ":"";
|
||||
$require=($this->require)?"required":"";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue