From dfb1976bd560a39b80cf0ba061b2bf0f76829bee Mon Sep 17 00:00:00 2001 From: umherirrender Date: Fri, 22 Aug 2014 22:13:16 +0200 Subject: [PATCH] Pass config to ResourceLoader from OutputPage Change-Id: Iae99ab65a254fc3fe3acac764a068470f99af1c4 --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index c98f34b172..f3b8c98a6e 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -2679,7 +2679,7 @@ $templates */ public function getResourceLoader() { if ( is_null( $this->mResourceLoader ) ) { - $this->mResourceLoader = new ResourceLoader(); + $this->mResourceLoader = new ResourceLoader( $this->getConfig() ); } return $this->mResourceLoader; } -- 2.20.1