Add missing retrun in getSummaryInputOOUI()
authorWMDE-Fisch <christoph.jauera@wikimedia.de>
Fri, 13 Oct 2017 11:20:12 +0000 (13:20 +0200)
committerWMDE-Fisch <christoph.jauera@wikimedia.de>
Fri, 13 Oct 2017 11:20:12 +0000 (13:20 +0200)
Change-Id: I26ad5bd4ed7e4d0e690c48354dc281f4636becd7

includes/EditPage.php

index 3fc12ce..bc91623 100644 (file)
@@ -3166,7 +3166,7 @@ class EditPage {
         */
        function getSummaryInputOOUI( $summary = "", $labelText = null, $inputAttrs = null ) {
                wfDeprecated( __METHOD__, '1.30' );
-               $this->getSummaryInputWidget( $summary, $labelText, $inputAttrs );
+               return $this->getSummaryInputWidget( $summary, $labelText, $inputAttrs );
        }
 
        /**