diff options
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Settings.php | 2 | ||||
-rw-r--r-- | Zotlabs/Render/Theme.php | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/Zotlabs/Module/Settings.php b/Zotlabs/Module/Settings.php index 2679b364b..bd16b930e 100644 --- a/Zotlabs/Module/Settings.php +++ b/Zotlabs/Module/Settings.php @@ -1028,7 +1028,7 @@ class Settings extends \Zotlabs\Web\Controller { $theme_config = theme_content($a); } -logger('schemas: ' . print_r($schemas,true)); + // logger('schemas: ' . print_r($schemas,true)); $tpl = get_markup_template("settings_display.tpl"); $o = replace_macros($tpl, array( diff --git a/Zotlabs/Render/Theme.php b/Zotlabs/Render/Theme.php index a732e4fef..62068bc82 100644 --- a/Zotlabs/Render/Theme.php +++ b/Zotlabs/Render/Theme.php @@ -127,5 +127,12 @@ class Theme { return('view/theme/' . $t . '/css/style.css'); } + + function debug() { + logger('system_theme: ' . self::$system_theme); + logger('session_theme: ' . self::$session_theme); + + } + } |