aboutsummaryrefslogtreecommitdiffstats
path: root/boot.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 /boot.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 'boot.php')
-rw-r--r--boot.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/boot.php b/boot.php
index f66cf4bc0..ff036c3df 100644
--- a/boot.php
+++ b/boot.php
@@ -498,9 +498,6 @@ function install_plugin($plugin){
if(! function_exists('check_config')) {
function check_config(&$a) {
-
- load_config('system');
-
$build = get_config('system','build');
if(! x($build))
$build = set_config('system','build',DB_UPDATE_VERSION);
@@ -1218,7 +1215,11 @@ function load_config($family) {
if(count($r)) {
foreach($r as $rr) {
$k = $rr['k'];
- $a->config[$family][$k] = $rr['v'];
+ if ($rr['cat'] === 'config') {
+ $a->config[$k] = $rr['v'];
+ } else {
+ $a->config[$family][$k] = $rr['v'];
+ }
}
}
}}