summaryrefslogtreecommitdiffstats
path: root/config/config.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'config/config.inc.php')
-rw-r--r--config/config.inc.php46
1 files changed, 21 insertions, 25 deletions
diff --git a/config/config.inc.php b/config/config.inc.php
index b69ea2f..d12c7ba 100644
--- a/config/config.inc.php
+++ b/config/config.inc.php
@@ -1,27 +1,23 @@
<?PHP
- if(!defined('CONFIG_INC')) {
- define('CONFIG_INC', 1);
-
- // main options
-
- $config['language'] = 'de';
- $config['home'] = 'Home:Startseite';
-
-
- // database connection
-
- $config['driver'] = 'mysql';
- $config['server'] = 'localhost';
-
- $config['user'] = 'gamezock';
- $config['password'] = 'thegzpass';
-
- $config['db'] = 'gamezock-2';
-
-
- // page design
-
- $config['default_style'] = 'GreenGrid';
- $config['title'] = 'Neon - ';
- }
+ // main options
+
+ $GLOBALS['config']['language'] = 'de';
+ $GLOBALS['config']['home'] = 'Home:Startseite';
+
+
+ // database connection
+
+ $GLOBALS['config']['driver'] = 'mysql';
+ $GLOBALS['config']['server'] = 'localhost';
+
+ $GLOBALS['config']['user'] = 'gamezock';
+ $GLOBALS['config']['password'] = 'thegzpass';
+
+ $GLOBALS['config']['db'] = 'gamezock-2';
+
+
+ // page design
+
+ $GLOBALS['config']['default_style'] = 'GreenGrid';
+ $GLOBALS['config']['title'] = 'Neon - ';
?>