diff options
author | Max Kostikov <max@kostikov.co> | 2019-01-24 21:57:14 +0100 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2019-01-24 21:57:14 +0100 |
commit | 7a3ad30bfabef867a471c4bd4f08c010903e0af2 (patch) | |
tree | a512d4c9f374343f9f6c69da3a3a328cd9ef5987 | |
parent | 1d314834a4d2c1a31c6eedf9889aec2ba07cc47e (diff) | |
parent | 32acf9cb7283f55338994346fd90c9ef2136fab3 (diff) | |
download | volse-hubzilla-7a3ad30bfabef867a471c4bd4f08c010903e0af2.tar.gz volse-hubzilla-7a3ad30bfabef867a471c4bd4f08c010903e0af2.tar.bz2 volse-hubzilla-7a3ad30bfabef867a471c4bd4f08c010903e0af2.zip |
Merge branch 'zot6_fixes' into 'dev'
macke mod chanview aware of zot6
See merge request hubzilla/core!1487
-rw-r--r-- | Zotlabs/Module/Chanview.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Chanview.php b/Zotlabs/Module/Chanview.php index 779c7e646..2e653d030 100644 --- a/Zotlabs/Module/Chanview.php +++ b/Zotlabs/Module/Chanview.php @@ -106,7 +106,7 @@ class Chanview extends \Zotlabs\Web\Controller { if (\App::$poi) { $url = \App::$poi['xchan_url']; - if(\App::$poi['xchan_network'] === 'zot') { + if(in_array(\App::$poi['xchan_network'], ['zot', 'zot6'])) { $is_zot = true; } if(local_channel()) { |