From 50def0df0c4cd9e37fa44d242599853be4c0d406 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Tue, 8 Feb 2011 12:14:35 +0000 Subject: [PATCH] Fix double commas from r81721. This time I actually ran it through php -l before committing *shame* --- resources/Resources.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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', -- 2.20.1