From a1789ddde42033f1b05cc4929491214ee6e79383 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Thu, 17 Dec 2015 09:15:42 +0100 Subject: Update to MediaWiki 1.26.0 --- includes/htmlform/HTMLInfoField.php | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'includes/htmlform/HTMLInfoField.php') diff --git a/includes/htmlform/HTMLInfoField.php b/includes/htmlform/HTMLInfoField.php index a422047a..a667653a 100644 --- a/includes/htmlform/HTMLInfoField.php +++ b/includes/htmlform/HTMLInfoField.php @@ -14,6 +14,16 @@ class HTMLInfoField extends HTMLFormField { return !empty( $this->mParams['raw'] ) ? $value : htmlspecialchars( $value ); } + public function getInputOOUI( $value ) { + if ( !empty( $this->mParams['raw'] ) ) { + $value = new OOUI\HtmlSnippet( $value ); + } + + return new OOUI\LabelWidget( array( + 'label' => $value, + ) ); + } + public function getTableRow( $value ) { if ( !empty( $this->mParams['rawrow'] ) ) { return $value; -- cgit v1.2.3-54-g00ecf