aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Channel.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-11-22 13:07:03 +0000
committerMario <mario@mariovavti.com>2020-11-22 13:07:03 +0000
commitc0adf31da9a0d8f897dc68ab632c736891318ad5 (patch)
treee9b5756e05b9675d487d47bccc330ef2a67888e7 /Zotlabs/Module/Channel.php
parentbb43c57b0731270d563dca8afb773b49e9023f54 (diff)
downloadvolse-hubzilla-c0adf31da9a0d8f897dc68ab632c736891318ad5.tar.gz
volse-hubzilla-c0adf31da9a0d8f897dc68ab632c736891318ad5.tar.bz2
volse-hubzilla-c0adf31da9a0d8f897dc68ab632c736891318ad5.zip
fix like issue with remote channels
Diffstat (limited to 'Zotlabs/Module/Channel.php')
-rw-r--r--Zotlabs/Module/Channel.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/Zotlabs/Module/Channel.php b/Zotlabs/Module/Channel.php
index 153b4feaf..7ff394750 100644
--- a/Zotlabs/Module/Channel.php
+++ b/Zotlabs/Module/Channel.php
@@ -390,7 +390,7 @@ class Channel extends Controller {
$o .= '<div id="live-channel"></div>' . "\r\n";
$o .= "<script> var profile_uid = " . App::$profile['profile_uid']
. "; var netargs = '?f='; var profile_page = " . App::$pager['page']
- . "; divmore_height = " . intval($maxheight) . "; </script>\r\n";
+ . "; divmore_height = " . intval($maxheight) . ";</script>\r\n";
App::$page['htmlhead'] .= replace_macros(get_markup_template("build_query.tpl"),array(
'$baseurl' => z_root(),
@@ -420,7 +420,8 @@ class Channel extends Controller {
'$verb' => '',
'$net' => '',
'$dend' => $datequery,
- '$dbegin' => $datequery2
+ '$dbegin' => $datequery2,
+ '$conv_mode' => 'channel'
));
}