diff options
Diffstat (limited to 'includes/htmlform/HTMLFormField.php')
-rw-r--r-- | includes/htmlform/HTMLFormField.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/includes/htmlform/HTMLFormField.php b/includes/htmlform/HTMLFormField.php index 5066f28ee432..cd4d4b749f87 100644 --- a/includes/htmlform/HTMLFormField.php +++ b/includes/htmlform/HTMLFormField.php @@ -546,8 +546,7 @@ abstract class HTMLFormField { 'mw-htmlform-nolabel' => ( $label === '' ) ]; - $horizontalLabel = isset( $this->mParams['horizontal-label'] ) - ? $this->mParams['horizontal-label'] : false; + $horizontalLabel = $this->mParams['horizontal-label'] ?? false; if ( $horizontalLabel ) { $field = ' ' . $inputHtml . "\n$errors"; @@ -950,8 +949,7 @@ abstract class HTMLFormField { $displayFormat = $this->mParent->getDisplayFormat(); $html = ''; - $horizontalLabel = isset( $this->mParams['horizontal-label'] ) - ? $this->mParams['horizontal-label'] : false; + $horizontalLabel = $this->mParams['horizontal-label'] ?? false; if ( $displayFormat === 'table' ) { $html = |