diff options
author | redmatrix <mike@macgirvin.com> | 2016-09-01 22:10:56 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-09-01 22:10:56 -0700 |
commit | b3efdf2109d47c09a3e2724fbd92df2634cca2d7 (patch) | |
tree | 3d6a3995f96fbc8bf74a87608469630dec2b0d08 /Zotlabs/Module/Settings.php | |
parent | e5c077243c4c01c597c241de7e31df4ae53aedab (diff) | |
download | volse-hubzilla-b3efdf2109d47c09a3e2724fbd92df2634cca2d7.tar.gz volse-hubzilla-b3efdf2109d47c09a3e2724fbd92df2634cca2d7.tar.bz2 volse-hubzilla-b3efdf2109d47c09a3e2724fbd92df2634cca2d7.zip |
turn theme configuration into a class object
Diffstat (limited to 'Zotlabs/Module/Settings.php')
-rw-r--r-- | Zotlabs/Module/Settings.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Zotlabs/Module/Settings.php b/Zotlabs/Module/Settings.php index 43b35df23..cfaf07c45 100644 --- a/Zotlabs/Module/Settings.php +++ b/Zotlabs/Module/Settings.php @@ -276,9 +276,9 @@ class Settings extends \Zotlabs\Web\Controller { $newschema = $_POST['schema']; if($newschema === '---') $newschema = ''; - } - theme_post($a); + $theme_config->post(); + } } } @@ -1042,10 +1042,10 @@ class Settings extends \Zotlabs\Web\Controller { require_once($themeconfigfile); if(class_exists(ucfirst($theme) . 'Config')) { $clsname = ucfirst($theme) . 'Config'; - $theme_config = new $clsname(); - $schemas = $theme_config->get_schemas(); + $thm_config = new $clsname(); + $schemas = $thm_config->get_schemas(); + $theme_config = $thm_config->get(); } - $theme_config = theme_content($a); } // logger('schemas: ' . print_r($schemas,true)); |