Add hidden parameter

This commit is contained in:
X! 2008-11-17 21:54:38 +00:00
parent 75f23a2459
commit 80c1798b7b

View file

@ -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,