aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Config.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-03-12 17:32:45 -0700
committerzotlabs <mike@macgirvin.com>2017-03-12 17:32:45 -0700
commitc39c925d8db1fd6a62033c1ece71cc4424899935 (patch)
tree89371aa7dc9da4b22351829cc97f3f800eb9106a /Zotlabs/Lib/Config.php
parentb1fc29be117cd95ad175a9899d1102ee56471d5b (diff)
downloadvolse-hubzilla-c39c925d8db1fd6a62033c1ece71cc4424899935.tar.gz
volse-hubzilla-c39c925d8db1fd6a62033c1ece71cc4424899935.tar.bz2
volse-hubzilla-c39c925d8db1fd6a62033c1ece71cc4424899935.zip
grrr. stop making branding assumptions.
Diffstat (limited to 'Zotlabs/Lib/Config.php')
-rw-r--r--Zotlabs/Lib/Config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Config.php b/Zotlabs/Lib/Config.php
index 5625a3f79..6e042feba 100644
--- a/Zotlabs/Lib/Config.php
+++ b/Zotlabs/Lib/Config.php
@@ -53,7 +53,7 @@ class Config {
$dbvalue = ((is_array($value)) ? serialize($value) : $value);
$dbvalue = ((is_bool($dbvalue)) ? intval($dbvalue) : $dbvalue);
- if(get_config($family, $key) === false || (! self::get_from_storage($family, $key))) {
+ if(self::Get($family, $key) === false || (! self::get_from_storage($family, $key))) {
$ret = q("INSERT INTO config ( cat, k, v ) VALUES ( '%s', '%s', '%s' ) ",
dbesc($family),
dbesc($key),