aboutsummaryrefslogtreecommitdiffstats
path: root/includes/Defines.php
diff options
context:
space:
mode:
authorAntoine Musso <hashar@free.fr>2013-01-30 15:03:58 +0100
committerAntoine Musso <hashar@free.fr>2013-02-06 19:30:39 +0100
commit7006e1df9309f7dc1f311e9025b3641f7bdf9a8b (patch)
tree3f1dbe29b6f9621f75481f59e2ad88d154d8b175 /includes/Defines.php
parentb696aeab2d7e4d6daba2aa075ffefef56f478756 (diff)
downloadmediawikicore-7006e1df9309f7dc1f311e9025b3641f7bdf9a8b.tar.gz
mediawikicore-7006e1df9309f7dc1f311e9025b3641f7bdf9a8b.zip
style: fix up commas in function arguments
Fix up spaces in our function calls, we do not want spaces before a comma and try to avoid multiple commas whenever possible. Errors: * No space found after comma in function call * Space found before comma in function call Change-Id: I51aec02016f742422fa60b92ad35ba3f0ef59ba3
Diffstat (limited to 'includes/Defines.php')
-rw-r--r--includes/Defines.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/Defines.php b/includes/Defines.php
index 882f31824545..46b0947a5b79 100644
--- a/includes/Defines.php
+++ b/includes/Defines.php
@@ -227,7 +227,7 @@ define( 'MW_SUPPORTS_RESOURCE_MODULES', 1 );
define( 'OT_HTML', 1 );
define( 'OT_WIKI', 2 );
define( 'OT_PREPROCESS', 3 );
-define( 'OT_MSG' , 3 ); // b/c alias for OT_PREPROCESS
+define( 'OT_MSG', 3 ); // b/c alias for OT_PREPROCESS
define( 'OT_PLAIN', 4 );
/**@}*/