Add a space between input field and button. Looks smarter :)

This commit is contained in:
Raimond Spekking 2009-01-01 13:29:46 +00:00
parent 226f5c0acf
commit 2ad7747074

View file

@ -470,13 +470,13 @@ class InputBox {
$this->$var = $values[$name];
}
}
// Insert a line break if configured to do so
$this->mBR = ( strtolower( $this->mBR ) == "no" ) ? '' : '<br />';
$this->mBR = ( strtolower( $this->mBR ) == "no" ) ? ' ' : '<br />';
// Validate the width; make sure it's a valid, positive integer
$this->mWidth = intval( $this->mWidth <= 0 ? 50 : $this->mWidth );
wfProfileOut( __METHOD__ );
}