aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-06-04 15:13:10 -0400
committerAndrew Manning <tamanning@zoho.com>2016-06-04 15:13:10 -0400
commita92241d3cf609b60cb9dbaa0ef5a7ff7237e7faa (patch)
tree558c5bddbe598b8cf3291d593f27a439814a1b6e /Zotlabs
parent344c293424716cc53eed2fea9eb3a7512e725516 (diff)
parentb84f7cd37fdad61e04878580645cab8c53c666f4 (diff)
downloadvolse-hubzilla-a92241d3cf609b60cb9dbaa0ef5a7ff7237e7faa.tar.gz
volse-hubzilla-a92241d3cf609b60cb9dbaa0ef5a7ff7237e7faa.tar.bz2
volse-hubzilla-a92241d3cf609b60cb9dbaa0ef5a7ff7237e7faa.zip
Merge remote-tracking branch 'upstream/dev' into wiki
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Module/Admin.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Admin.php b/Zotlabs/Module/Admin.php
index 4cabd78ca..b2c6baf1d 100644
--- a/Zotlabs/Module/Admin.php
+++ b/Zotlabs/Module/Admin.php
@@ -1547,8 +1547,8 @@ class Admin extends \Zotlabs\Web\Controller {
// Toggle theme status
- toggle_theme($themes, $theme, $result);
- $s = rebuild_theme_table($themes);
+ $this->toggle_theme($themes, $theme, $result);
+ $s = $this->rebuild_theme_table($themes);
if($result)
info( sprintf('Theme %s enabled.', $theme));
else
@@ -1561,7 +1561,7 @@ class Admin extends \Zotlabs\Web\Controller {
// display theme details
require_once('library/markdown.php');
- if (theme_status($themes,$theme)) {
+ if ($this->theme_status($themes,$theme)) {
$status="on"; $action= t("Disable");
} else {
$status="off"; $action= t("Enable");