diff options
author | friendica <info@friendica.com> | 2015-01-12 18:33:39 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-12 18:33:39 -0800 |
commit | 1b3e52af2dc4f2872c666784b284a5ba0a8de61d (patch) | |
tree | 606ab65753449fec5cfb646cdfa1614ca0d0adf1 /mod/cloud.php | |
parent | 2f9fe0280ecb2dcf2bb5b5fe9eed6a6651856647 (diff) | |
download | volse-hubzilla-1b3e52af2dc4f2872c666784b284a5ba0a8de61d.tar.gz volse-hubzilla-1b3e52af2dc4f2872c666784b284a5ba0a8de61d.tar.bz2 volse-hubzilla-1b3e52af2dc4f2872c666784b284a5ba0a8de61d.zip |
theme toggle issue when viewing mod/cloud of another channel
Diffstat (limited to 'mod/cloud.php')
-rw-r--r-- | mod/cloud.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/mod/cloud.php b/mod/cloud.php index abeae88eb..3643e599c 100644 --- a/mod/cloud.php +++ b/mod/cloud.php @@ -41,15 +41,6 @@ if(! defined('TRINIDAD')) { * @param App &$a */ function cloud_init(&$a) { - // call ($currenttheme)_init since we're operating outside of index.php - $theme_info_file = "view/theme/" . current_theme() . "/php/theme.php"; - if (file_exists($theme_info_file)){ - require_once($theme_info_file); - if (function_exists(str_replace('-', '_', current_theme()) . '_init')) { - $func = str_replace('-', '_', current_theme()) . '_init'; - $func($a); - } - } require_once('include/reddav.php'); |