cached config glitch
This commit is contained in:
parent
b16be9e76a
commit
adad23a0ea
13
boot.php
13
boot.php
|
@ -579,11 +579,12 @@ function load_config($family) {
|
||||||
|
|
||||||
|
|
||||||
if(! function_exists('get_config')) {
|
if(! function_exists('get_config')) {
|
||||||
function get_config($family,$key) {
|
function get_config($family, $key, $instore = false) {
|
||||||
global $a;
|
global $a;
|
||||||
if(isset($a->config[$family][$key]))
|
if(! $instore) {
|
||||||
return $a->config[$family][$key];
|
if(isset($a->config[$family][$key]))
|
||||||
|
return $a->config[$family][$key];
|
||||||
|
}
|
||||||
$ret = q("SELECT `v` FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
|
$ret = q("SELECT `v` FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
|
||||||
dbesc($family),
|
dbesc($family),
|
||||||
dbesc($key)
|
dbesc($key)
|
||||||
|
@ -601,7 +602,7 @@ function set_config($family,$key,$value) {
|
||||||
global $a;
|
global $a;
|
||||||
$a->config[$family][$key] = $value;
|
$a->config[$family][$key] = $value;
|
||||||
|
|
||||||
if(get_config($family,$key) === false) {
|
if(get_config($family,$key,true) === false) {
|
||||||
$ret = q("INSERT INTO `config` ( `cat`, `k`, `v` ) VALUES ( '%s', '%s', '%s' ) ",
|
$ret = q("INSERT INTO `config` ( `cat`, `k`, `v` ) VALUES ( '%s', '%s', '%s' ) ",
|
||||||
dbesc($family),
|
dbesc($family),
|
||||||
dbesc($key),
|
dbesc($key),
|
||||||
|
@ -611,7 +612,7 @@ function set_config($family,$key,$value) {
|
||||||
return $value;
|
return $value;
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
$ret = q("SUPDATE `config` SET `v` = '%s' WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
|
$ret = q("UPDATE `config` SET `v` = '%s' WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
|
||||||
dbesc($value),
|
dbesc($value),
|
||||||
dbesc($family),
|
dbesc($family),
|
||||||
dbesc($key)
|
dbesc($key)
|
||||||
|
|
Loading…
Reference in a new issue