summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNelson Martell <nelson6e65-dev@yahoo.es>2015-10-15 01:17:22 -0430
committerNelson Martell <nelson6e65-dev@yahoo.es>2015-10-15 01:17:22 -0430
commiteecbbfe1bec9553811d5429e62ef9550bb763e43 (patch)
treeb84a5ac31b438e158ea28b731eac4cecccdfbaf3
parent41b849bdccfd7c758c205c416b87f7e4d0508a7a (diff)
downloadwebsite-eecbbfe1bec9553811d5429e62ef9550bb763e43.tar.gz
website-eecbbfe1bec9553811d5429e62ef9550bb763e43.tar.bz2
website-eecbbfe1bec9553811d5429e62ef9550bb763e43.tar.xz
website-eecbbfe1bec9553811d5429e62ef9550bb763e43.zip
:art: improve arrays coding style.
-rw-r--r--extensions/tmwa/frontend/language/TMWAccount.alias.php16
-rw-r--r--extensions/tmwa/frontend/language/TMWAccount.i18n.php12
2 files changed, 16 insertions, 12 deletions
diff --git a/extensions/tmwa/frontend/language/TMWAccount.alias.php b/extensions/tmwa/frontend/language/TMWAccount.alias.php
index 7d6e624..55bba36 100644
--- a/extensions/tmwa/frontend/language/TMWAccount.alias.php
+++ b/extensions/tmwa/frontend/language/TMWAccount.alias.php
@@ -6,10 +6,14 @@
* @ingroup Extensions
*/
-$specialPageAliases = array();
-
-/** English (English) */
-$specialPageAliases['en'] = array(
- 'GameAccountPage' => array( 'The Mana World Account' ),
- 'GameNewsPage' => array( 'The Mana World News' )
+$specialPageAliases = array(
+ /** English (English) */
+ 'en' => array(
+ 'GameAccountPage' => array(
+ 'The Mana World Account'
+ ),
+ 'GameNewsPage' => array(
+ 'The Mana World News'
+ )
+ ),
);
diff --git a/extensions/tmwa/frontend/language/TMWAccount.i18n.php b/extensions/tmwa/frontend/language/TMWAccount.i18n.php
index 637a7f0..0616209 100644
--- a/extensions/tmwa/frontend/language/TMWAccount.i18n.php
+++ b/extensions/tmwa/frontend/language/TMWAccount.i18n.php
@@ -6,10 +6,10 @@
* @ingroup Extensions
*/
-$messages = array();
-
-$messages['en'] = array(
- 'gameaccount' => 'The Mana World Game Account',
- 'gamenews' => 'The Mana World Game News',
- 'gameaccount-loginnotice' => 'To obtain a game account, you must register here: \'\'\'[[Special:GameAccount|Game Account]]\'\'\'.<br/> To obtain a wiki account, you must register here: \'\'\'[[Special:RequestAccount|Wiki Account]]\'\'\'.',
+$messages = array(
+ 'en' => array(
+ 'gameaccount' => 'The Mana World Game Account',
+ 'gamenews' => 'The Mana World Game News',
+ 'gameaccount-loginnotice' => 'To obtain a game account, you must register here: \'\'\'[[Special:GameAccount|Game Account]]\'\'\'.<br/> To obtain a wiki account, you must register here: \'\'\'[[Special:RequestAccount|Wiki Account]]\'\'\'.',
+ ),
);