summaryrefslogtreecommitdiffstats
path: root/code/config.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'code/config.inc.php')
-rw-r--r--code/config.inc.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/code/config.inc.php b/code/config.inc.php
deleted file mode 100644
index b94a74e..0000000
--- a/code/config.inc.php
+++ /dev/null
@@ -1,11 +0,0 @@
-<?PHP
- require_once('config/config.inc.php');
-
- require_once('code/db.inc.php');
-
-
- $res = $GLOBALS['db']->Execute('SELECT name, value FROM config WHERE module = 0');
-
- while($row = $res->FetchRow())
- $GLOBALS['config'][$row[0]] = $row[1];
-?>