From 245a56f0c1c7db884d0bbd4265f6f74a20442748 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 26 Apr 2011 04:39:27 -0700 Subject: lots of facebook fixes --- boot.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 67f17299d..f2c2b39bc 100644 --- a/boot.php +++ b/boot.php @@ -1218,6 +1218,7 @@ function set_config($family,$key,$value) { global $a; if(get_config($family,$key,true) === false) { + $a->config[$family][$key] = $value; $ret = q("INSERT INTO `config` ( `cat`, `k`, `v` ) VALUES ( '%s', '%s', '%s' ) ", dbesc($family), dbesc($key), @@ -1312,6 +1313,7 @@ function set_pconfig($uid,$family,$key,$value) { global $a; if(get_pconfig($uid,$family,$key,true) === false) { + $a->config[$uid][$family][$key] = $value; $ret = q("INSERT INTO `pconfig` ( `uid`, `cat`, `k`, `v` ) VALUES ( %d, '%s', '%s', '%s' ) ", intval($uid), dbesc($family), -- cgit v1.2.3