aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-06-30 01:15:18 -0700
committerFriendika <info@friendika.com>2011-06-30 01:15:18 -0700
commit994011ddb6cc1097214537160a10bf710aedc553 (patch)
treee4f88c8e8db8f78c1c5c3362919aa3ca32eb3b20 /index.php
parent3eb0b4be2a7e0f4d8f9a518114e1daa49f46b59b (diff)
downloadvolse-hubzilla-994011ddb6cc1097214537160a10bf710aedc553.tar.gz
volse-hubzilla-994011ddb6cc1097214537160a10bf710aedc553.tar.bz2
volse-hubzilla-994011ddb6cc1097214537160a10bf710aedc553.zip
load db configs (config,system) for all "executables"
Diffstat (limited to 'index.php')
-rw-r--r--index.php11
1 files changed, 2 insertions, 9 deletions
diff --git a/index.php b/index.php
index a58e4730f..2e24c5b01 100644
--- a/index.php
+++ b/index.php
@@ -50,15 +50,8 @@ if(! $install) {
* Load configs from db. Overwrite configs from .htconfig.php
*/
- $r = q("SELECT * FROM `config` WHERE `cat` IN ('system', 'config')");
- foreach ($r as $c) {
- if ($c['cat']=='config') {
- $a->config[$c['k']] = $c['v'];
- } else {
- $a->config[$c['cat']][$c['k']] = $c['v'];
- }
- }
- unset($r);
+ load_config('config');
+ load_config('system');
require_once("session.php");
load_hooks();