diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-06-20 21:45:15 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-06-20 21:45:15 +0200 |
commit | 17c5502330136bf429556935fef956781edb865f (patch) | |
tree | b7c68123bf44b9d8e2ccf558fc54ae18cad9aff0 /Zotlabs/Lib/XConfig.php | |
parent | 3cf6f1f79ccbe88eaa1dd2be8d91aef91d7cc926 (diff) | |
download | volse-hubzilla-17c5502330136bf429556935fef956781edb865f.tar.gz volse-hubzilla-17c5502330136bf429556935fef956781edb865f.tar.bz2 volse-hubzilla-17c5502330136bf429556935fef956781edb865f.zip |
missing backslash leading to wsod on xconfig changes
Diffstat (limited to 'Zotlabs/Lib/XConfig.php')
-rw-r--r-- | Zotlabs/Lib/XConfig.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Lib/XConfig.php b/Zotlabs/Lib/XConfig.php index e28dcf559..7f3d0f2cd 100644 --- a/Zotlabs/Lib/XConfig.php +++ b/Zotlabs/Lib/XConfig.php @@ -122,7 +122,7 @@ class XConfig { ); } - App::$config[$xchan][$family][$key] = $value; + \App::$config[$xchan][$family][$key] = $value; if($ret) return $value; @@ -157,4 +157,4 @@ class XConfig { return $ret; } -}
\ No newline at end of file +} |