Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -2302,7 +2302,7 @@ |
2303 | 2303 | * @param $useESI boolean |
2304 | 2304 | * @return string html <script> and <style> tags |
2305 | 2305 | */ |
2306 | | - protected function makeResourceLoaderLink( $skin, $modules, $only, $useESI = false ) { |
| 2306 | + protected function makeResourceLoaderLink( Skin $skin, $modules, $only, $useESI = false ) { |
2307 | 2307 | global $wgUser, $wgLang, $wgLoadScript, $wgResourceLoaderUseESI, |
2308 | 2308 | $wgResourceLoaderInlinePrivateModules; |
2309 | 2309 | // Lazy-load ResourceLoader |
— | — | @@ -2332,7 +2332,7 @@ |
2333 | 2333 | // Recursively call us for every item |
2334 | 2334 | $links = ''; |
2335 | 2335 | foreach ( $modules as $name ) { |
2336 | | - $links .= $this->makeResourceLoaderLink( $sk, $name, $only, $useESI ); |
| 2336 | + $links .= $this->makeResourceLoaderLink( $skin, $name, $only, $useESI ); |
2337 | 2337 | } |
2338 | 2338 | return $links; |
2339 | 2339 | } |