summaryrefslogtreecommitdiffstats
path: root/code/message.inc.php
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-01-09 20:49:02 +0100
committerneoraider <devnull@localhost>2006-01-09 20:49:02 +0100
commit73d5e907a797e976e59f328d4f2fd0b8bfcebde6 (patch)
tree98108e9738db75d2688de5f7a68c72253c54c450 /code/message.inc.php
parent61f7b4cc39a399a16298453acbe5a8f49ad0513d (diff)
downloadneon-73d5e907a797e976e59f328d4f2fd0b8bfcebde6.tar
neon-73d5e907a797e976e59f328d4f2fd0b8bfcebde6.zip
Allgemein ist jetzt alles etwas weiter. Vieles ist jetzt durch Klassen gel?st, und einige andere Teile von Neon sind jetzt besser strukturiert.
Diffstat (limited to 'code/message.inc.php')
-rw-r--r--code/message.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/message.inc.php b/code/message.inc.php
index 7f9343d..8e0a3f0 100644
--- a/code/message.inc.php
+++ b/code/message.inc.php
@@ -12,8 +12,8 @@
if($config['language'] != 'en') @include('lang/' . $config['language'] . '.inc.php');
- function Message($type, $subst = array()) {
- return Subst($GLOBALS['message'][$type], $subst);
+ function Message($type, $data = array()) {
+ return Subst($GLOBALS['message'][$type], $data);
}
}
?>