diff options
author | Mario <mario@mariovavti.com> | 2020-11-18 09:52:44 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-18 09:52:44 +0000 |
commit | f2fd12fbe544d5e87680aed98489698b4ca9ddd6 (patch) | |
tree | 72ab0d93538739f20cf68d6d3e60f97245c80084 /include | |
parent | b5ab77908e357b027a9298e0258f3c0737f3c721 (diff) | |
download | volse-hubzilla-f2fd12fbe544d5e87680aed98489698b4ca9ddd6.tar.gz volse-hubzilla-f2fd12fbe544d5e87680aed98489698b4ca9ddd6.tar.bz2 volse-hubzilla-f2fd12fbe544d5e87680aed98489698b4ca9ddd6.zip |
Do away with auto updates except for our own actions. We might consider to re-implement this for single thread view like eg /display. Instead of calculating scroll positions during updates, keep track of expanded items and set the expanded state when updating - this fixes issue #1488
Diffstat (limited to 'include')
-rw-r--r-- | include/channel.php | 20 | ||||
-rw-r--r-- | include/text.php | 2 |
2 files changed, 1 insertions, 21 deletions
diff --git a/include/channel.php b/include/channel.php index e2be4d8a8..71fad5222 100644 --- a/include/channel.php +++ b/include/channel.php @@ -2573,26 +2573,6 @@ function channel_reddress($channel) { return strtolower($channel['channel_address'] . '@' . App::get_hostname()); } - -/** - * @brief Get manual channel conversation update config. - * - * Check the channel config \e manual_conversation_update, if not set fall back - * to global system config, defaults to 1 if nothing set. - * - * @param int $channel_id - * @return int - */ -function channel_manual_conv_update($channel_id) { - - $x = get_pconfig($channel_id, 'system', 'manual_conversation_update'); - if($x === false) - $x = get_config('system', 'manual_conversation_update', 1); - - return intval($x); -} - - /** * @brief Return parsed HTML remote_login template. * diff --git a/include/text.php b/include/text.php index 58cde7838..c2a45814c 100644 --- a/include/text.php +++ b/include/text.php @@ -1667,7 +1667,7 @@ function format_filer(&$item) { if(! trim($term)) continue; $removelink = z_root() . '/filerm/' . $item['id'] . '?f=&term=' . urlencode($t['term']); - $categories[] = array('term' => $term, 'removelink' => $removelink); + $categories[] = array('term' => $term, 'removelink' => $removelink, 'id' => $item['id']); } $s = replace_macros(get_markup_template('item_filer.tpl'),array( |