From: Bartosz DziewoƄski Date: Fri, 5 Jun 2015 22:26:56 +0000 (+0200) Subject: resourceloader: Unbreak ResourceLoaderImageModule's rasterization X-Git-Tag: 1.31.0-rc.0~11160^2 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=cb86baf4d48f615fc56acb992d472b825e6afefd;p=lhc%2Fweb%2Fwiklou.git resourceloader: Unbreak ResourceLoaderImageModule's rasterization Follow-up to 1fc57830e257f47ae0508899dc35b80674475859. Forgot to update a method call. Change-Id: I2b3113c853a37f802f781a848b495e036971710c --- diff --git a/includes/resourceloader/ResourceLoaderContext.php b/includes/resourceloader/ResourceLoaderContext.php index 8eb5d8b80c..cee70350c2 100644 --- a/includes/resourceloader/ResourceLoaderContext.php +++ b/includes/resourceloader/ResourceLoaderContext.php @@ -290,7 +290,7 @@ class ResourceLoaderContext { return $this->imageObj; } - $image = $module->getImage( $this->image ); + $image = $module->getImage( $this->image, $this ); if ( !$image ) { return $this->imageObj; }