From: Roan Kattouw Date: Tue, 8 Feb 2011 12:14:35 +0000 (+0000) Subject: Fix double commas from r81721. This time I actually ran it through php -l before... X-Git-Tag: 1.31.0-rc.0~32118 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/membres/fiche.php?a=commitdiff_plain;h=50def0df0c4cd9e37fa44d242599853be4c0d406;p=lhc%2Fweb%2Fwiklou.git Fix double commas from r81721. This time I actually ran it through php -l before committing *shame* --- diff --git a/resources/Resources.php b/resources/Resources.php index 38aeb4f5e3..4e9d6b2829 100644 --- a/resources/Resources.php +++ b/resources/Resources.php @@ -490,7 +490,7 @@ return array( 'mediawiki.legacy.ajax' => array( 'scripts' => 'common/ajax.js', 'remoteBasePath' => $GLOBALS['wgStylePath'], - 'localBasePath' => "{$GLOBALS['IP']}/skins",, + 'localBasePath' => "{$GLOBALS['IP']}/skins", 'messages' => array( 'watch', 'unwatch', @@ -504,13 +504,13 @@ return array( 'mediawiki.legacy.block' => array( 'scripts' => 'common/block.js', 'remoteBasePath' => $GLOBALS['wgStylePath'], - 'localBasePath' => "{$GLOBALS['IP']}/skins",, + 'localBasePath' => "{$GLOBALS['IP']}/skins", 'dependencies' => 'mediawiki.legacy.wikibits', ), 'mediawiki.legacy.commonPrint' => array( 'styles' => array( 'common/commonPrint.css' => array( 'media' => 'print' ) ), 'remoteBasePath' => $GLOBALS['wgStylePath'], - 'localBasePath' => "{$GLOBALS['IP']}/skins",, + 'localBasePath' => "{$GLOBALS['IP']}/skins", ), 'mediawiki.legacy.config' => array( 'scripts' => 'common/config.js',