From: Trevor Parscal Date: Fri, 11 Mar 2011 00:12:25 +0000 (+0000) Subject: Fixes bug #27979 by removing 2 unused arguments from the function declaration. These... X-Git-Tag: 1.31.0-rc.0~31519 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=7bd3d5944a563531858825bd0627492fd0f408ef;p=lhc%2Fweb%2Fwiklou.git Fixes bug #27979 by removing 2 unused arguments from the function declaration. These were an artifact of splitting the recurse and resolve functions. --- diff --git a/resources/mediawiki/mediawiki.js b/resources/mediawiki/mediawiki.js index 37e3b1784d..d492bfdf0b 100644 --- a/resources/mediawiki/mediawiki.js +++ b/resources/mediawiki/mediawiki.js @@ -586,7 +586,7 @@ window.mediaWiki = new ( function( $ ) { * @return list of dependencies * @throws Error if circular reference is detected */ - function resolve( module, resolved, unresolved ) { + function resolve( module ) { // Allow calling with an array of module names if ( typeof module === 'object' ) { var modules = [];