diff options
author | Simon <simon@kisikew.org> | 2012-03-28 03:21:34 -0700 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-03-28 03:21:34 -0700 |
commit | 8c9533275301f94c4f7ece3f51e36aa2c05a73cf (patch) | |
tree | 559d7773198b709fbba7249664a88e7f459402fc | |
parent | c32ee4d226dec11d881dd5c68eda073e87780c12 (diff) | |
parent | 3d5e711780391fece27af1aaf915b81aca7536fe (diff) | |
download | volse-hubzilla-8c9533275301f94c4f7ece3f51e36aa2c05a73cf.tar.gz volse-hubzilla-8c9533275301f94c4f7ece3f51e36aa2c05a73cf.tar.bz2 volse-hubzilla-8c9533275301f94c4f7ece3f51e36aa2c05a73cf.zip |
Merge pull request #181 from simonlnu/master
how the default.php gets read just changed from under me. not pleasant.
-rw-r--r-- | view/theme/dispy-dark/theme.php | 3 | ||||
-rw-r--r-- | view/theme/dispy/theme.php | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/view/theme/dispy-dark/theme.php b/view/theme/dispy-dark/theme.php index 372757752..f06a97a5f 100644 --- a/view/theme/dispy-dark/theme.php +++ b/view/theme/dispy-dark/theme.php @@ -157,7 +157,8 @@ function dispydark_community_info() { } // use our 'default.php' instead of the system-wide one -$a->page['template'] = "theme/dispy-dark/default"; +$theme_name = 'dispy-dark'; +//$a->page['template'] = "theme/dispy-dark/default"; // aside on profile page if ($a->argv[0] === "profile") { diff --git a/view/theme/dispy/theme.php b/view/theme/dispy/theme.php index 190872d01..15e54f7e2 100644 --- a/view/theme/dispy/theme.php +++ b/view/theme/dispy/theme.php @@ -157,7 +157,8 @@ function dispy_community_info() { } // use our 'default.php' instead of the system-wide one -$a->page['template'] = "theme/dispy-dark/default"; +$theme_name = 'dispy'; +//$a->page['template'] = "theme/dispy/default"; // aside on profile page if ($a->argv[0] === "profile") { |