aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Settings.php
diff options
context:
space:
mode:
authorredmatrix <mike@macgirvin.com>2016-09-02 02:34:33 -0700
committerredmatrix <mike@macgirvin.com>2016-09-02 02:34:33 -0700
commit75c1e7a193e07513680c522014481f9bd082a026 (patch)
treecfae9b457a8c127c773b395656b89c9eecf53a7f /Zotlabs/Module/Settings.php
parent5897ed896a74197c4350422dc080044586c84ec1 (diff)
downloadvolse-hubzilla-75c1e7a193e07513680c522014481f9bd082a026.tar.gz
volse-hubzilla-75c1e7a193e07513680c522014481f9bd082a026.tar.bz2
volse-hubzilla-75c1e7a193e07513680c522014481f9bd082a026.zip
missed the namespace
Diffstat (limited to 'Zotlabs/Module/Settings.php')
-rw-r--r--Zotlabs/Module/Settings.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Settings.php b/Zotlabs/Module/Settings.php
index 28f9688f4..4bbbd2e9b 100644
--- a/Zotlabs/Module/Settings.php
+++ b/Zotlabs/Module/Settings.php
@@ -1040,8 +1040,8 @@ class Settings extends \Zotlabs\Web\Controller {
$theme_config = "";
if(($themeconfigfile = $this->get_theme_config_file($theme)) != null){
require_once($themeconfigfile);
- if(class_exists(ucfirst($theme) . 'Config')) {
- $clsname = ucfirst($theme) . 'Config';
+ if(class_exists('\\Zotlabs\\Theme\\' . ucfirst($theme) . 'Config')) {
+ $clsname = '\\Zotlabs\\Theme\\' . ucfirst($theme) . 'Config';
$thm_config = new $clsname();
$schemas = $thm_config->get_schemas();
$theme_config = $thm_config->get();