From: Alexandre Emsenhuber Date: Tue, 12 Aug 2014 18:03:45 +0000 (+0200) Subject: Remove useless $out parameter from SkinTemplate::prepareQuickTemplate() X-Git-Tag: 1.31.0-rc.0~14254^2~1 X-Git-Url: https://git.cyclocoop.org/admin/?a=commitdiff_plain;h=404939b9c272bd12a62bb47f7ca452368b7f20ca;p=lhc%2Fweb%2Fwiklou.git Remove useless $out parameter from SkinTemplate::prepareQuickTemplate() Part II; follow-up I4fac5b14af (ff4da35). It makes sufficient time the first part was merged, no need to pass the parameter anymore. Change-Id: Icb390995912b4860df4ce2571105d3a9dc97a092 --- diff --git a/includes/skins/SkinTemplate.php b/includes/skins/SkinTemplate.php index 867d8ec605..d08da1b9f6 100644 --- a/includes/skins/SkinTemplate.php +++ b/includes/skins/SkinTemplate.php @@ -271,7 +271,7 @@ class SkinTemplate extends Skin { wfProfileIn( __METHOD__ . '-init' ); $this->initPage( $out ); wfProfileOut( __METHOD__ . '-init' ); - $tpl = $this->prepareQuickTemplate( $out ); + $tpl = $this->prepareQuickTemplate(); // execute template wfProfileIn( __METHOD__ . '-execute' ); $res = $tpl->execute();