diff options
author | Friendika <info@friendika.com> | 2011-06-30 01:15:18 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-30 01:15:18 -0700 |
commit | 994011ddb6cc1097214537160a10bf710aedc553 (patch) | |
tree | e4f88c8e8db8f78c1c5c3362919aa3ca32eb3b20 /include/directory.php | |
parent | 3eb0b4be2a7e0f4d8f9a518114e1daa49f46b59b (diff) | |
download | volse-hubzilla-994011ddb6cc1097214537160a10bf710aedc553.tar.gz volse-hubzilla-994011ddb6cc1097214537160a10bf710aedc553.tar.bz2 volse-hubzilla-994011ddb6cc1097214537160a10bf710aedc553.zip |
load db configs (config,system) for all "executables"
Diffstat (limited to 'include/directory.php')
-rw-r--r-- | include/directory.php | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/include/directory.php b/include/directory.php index 2c9daa5ea..cae78adb4 100644 --- a/include/directory.php +++ b/include/directory.php @@ -2,18 +2,22 @@ require_once("boot.php"); function directory_run($argv, $argc){ - global $a, $db; + global $a, $db; - if(is_null($a)){ - $a = new App; - } + if(is_null($a)) { + $a = new App; + } - if(is_null($db)){ - @include(".htconfig.php"); - require_once("dba.php"); - $db = new dba($db_host, $db_user, $db_pass, $db_data); - unset($db_host, $db_user, $db_pass, $db_data); - }; + if(is_null($db)) { + @include(".htconfig.php"); + require_once("dba.php"); + $db = new dba($db_host, $db_user, $db_pass, $db_data); + unset($db_host, $db_user, $db_pass, $db_data); + }; + + load_config('config'); + load_config('system'); + if($argc != 2) return; |