mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
load $a->config from db
This commit is contained in:
parent
d66056af9d
commit
afd0f8e4d8
1 changed files with 14 additions and 1 deletions
15
index.php
15
index.php
|
@ -29,7 +29,6 @@ $install = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? false
|
|||
|
||||
@include(".htconfig.php");
|
||||
|
||||
|
||||
$lang = get_language();
|
||||
|
||||
load_translation_table($lang);
|
||||
|
@ -45,6 +44,20 @@ $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'];
|
||||
}
|
||||
}
|
||||
unset($r);
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* Important stuff we always need to do.
|
||||
|
|
Loading…
Reference in a new issue