diff options
author | Friendika <info@friendika.com> | 2011-06-27 17:18:13 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-27 17:18:13 -0700 |
commit | 29c57f7ad27f91c78317ef9c44543d6b3f169302 (patch) | |
tree | 2a5f2e4aa1745dadca8f1cfd98d60623b0e6b5e4 | |
parent | 1947b74e5bd92f11a3e8af2223826e649233a883 (diff) | |
download | volse-hubzilla-29c57f7ad27f91c78317ef9c44543d6b3f169302.tar.gz volse-hubzilla-29c57f7ad27f91c78317ef9c44543d6b3f169302.tar.bz2 volse-hubzilla-29c57f7ad27f91c78317ef9c44543d6b3f169302.zip |
don't load configs if no database.
-rw-r--r-- | index.php | 36 |
1 files changed, 18 insertions, 18 deletions
@@ -44,18 +44,26 @@ $db = new dba($db_host, $db_user, $db_pass, $db_data, $install); unset($db_host, $db_user, $db_pass, $db_data); -/** - * 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']; +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); + + require_once("session.php"); + load_hooks(); + call_hooks('init_1'); } -unset($r); /** @@ -70,14 +78,6 @@ unset($r); * */ -if(! $install) { - require_once("session.php"); - load_hooks(); - call_hooks('init_1'); -} - - - require_once("datetime.php"); $a->timezone = (($default_timezone) ? $default_timezone : 'UTC'); |