mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/InputBox
synced 2024-11-23 22:54:02 +00:00
Add hidden parameter
This commit is contained in:
parent
75f23a2459
commit
80c1798b7b
|
@ -388,7 +388,7 @@ class InputBox {
|
|||
);
|
||||
$htmlOut .= Xml::openElement( 'input',
|
||||
array(
|
||||
'type' => 'text',
|
||||
'type' => $this->mHidden ? 'hidden' : 'text',
|
||||
'name' => 'preloadtitle',
|
||||
'class' => 'commentboxInput',
|
||||
'value' => $this->mDefaultText,
|
||||
|
|
Loading…
Reference in a new issue