diff options
author | redmatrix <mike@macgirvin.com> | 2016-09-02 02:34:33 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-09-02 02:34:33 -0700 |
commit | 75c1e7a193e07513680c522014481f9bd082a026 (patch) | |
tree | cfae9b457a8c127c773b395656b89c9eecf53a7f /Zotlabs | |
parent | 5897ed896a74197c4350422dc080044586c84ec1 (diff) | |
download | volse-hubzilla-75c1e7a193e07513680c522014481f9bd082a026.tar.gz volse-hubzilla-75c1e7a193e07513680c522014481f9bd082a026.tar.bz2 volse-hubzilla-75c1e7a193e07513680c522014481f9bd082a026.zip |
missed the namespace
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Settings.php | 4 |
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(); |