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 /Zotlabs/Module/Search.php | |
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 'Zotlabs/Module/Search.php')
-rw-r--r-- | Zotlabs/Module/Search.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Zotlabs/Module/Search.php b/Zotlabs/Module/Search.php index d586ae12f..c22bf2836 100644 --- a/Zotlabs/Module/Search.php +++ b/Zotlabs/Module/Search.php @@ -19,9 +19,6 @@ class Search extends \Zotlabs\Web\Controller { } } - if($load) - $_SESSION['loadtime'] = datetime_convert(); - nav_set_selected('Search'); require_once("include/bbcode.php"); @@ -54,8 +51,6 @@ class Search extends \Zotlabs\Web\Controller { $search = ((x($_GET,'tag')) ? trim(escape_tags(rawurldecode($_GET['tag']))) : ''); } - $static = ((array_key_exists('static',$_REQUEST)) ? intval($_REQUEST['static']) : 0); - $o .= search($search,'search-box','/search',((local_channel()) ? true : false)); if(strpos($search,'#') === 0) { @@ -105,9 +100,6 @@ class Search extends \Zotlabs\Web\Controller { if((! $update) && (! $load)) { - $static = ((local_channel()) ? channel_manual_conv_update(local_channel()) : 0); - - // This is ugly, but we can't pass the profile_uid through the session to the ajax updater, // because browser prefetching might change it on us. We have to deliver it with the page. @@ -131,7 +123,6 @@ class Search extends \Zotlabs\Web\Controller { '$dm' => '0', '$nouveau' => '0', '$wall' => '0', - '$static' => $static, '$list' => ((x($_REQUEST,'list')) ? intval($_REQUEST['list']) : 0), '$page' => ((\App::$pager['page'] != 1) ? \App::$pager['page'] : 1), '$search' => (($tag) ? urlencode('#') : '') . $search, |