From 37480222fbad8b0a6bcc35e332a44dee2095f7bc Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Sat, 30 Dec 2017 02:32:06 -0800 Subject: [PATCH] Parser: extract $title, follow-up 3d560be428 In the conversion away from extract(), the $title variable was missed. This broke LabeledSectionTransclusion. Change-Id: If4c140aedf16fc16a4ae2361f465798055748255 --- includes/parser/Parser.php | 3 +++ 1 file changed, 3 insertions(+) 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']; } -- 2.20.1