From: Kunal Mehta Date: Sat, 30 Dec 2017 10:32:06 +0000 (-0800) Subject: Parser: extract $title, follow-up 3d560be428 X-Git-Tag: 1.31.0-rc.0~1041 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=37480222fbad8b0a6bcc35e332a44dee2095f7bc;p=lhc%2Fweb%2Fwiklou.git Parser: extract $title, follow-up 3d560be428 In the conversion away from extract(), the $title variable was missed. This broke LabeledSectionTransclusion. Change-Id: If4c140aedf16fc16a4ae2361f465798055748255 --- diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index 078de3c601..e7e7aa02df 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -3115,6 +3115,9 @@ class Parser { } // Extract any forwarded flags + if ( isset( $result['title'] ) ) { + $title = $result['title']; + } if ( isset( $result['found'] ) ) { $found = $result['found']; }