aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/build_query.tpl
diff options
context:
space:
mode:
authorM. Dent <dentm42@gmail.com>2018-10-25 03:38:05 +0200
committerM. Dent <dentm42@gmail.com>2018-10-25 03:38:05 +0200
commit9cedc864c296ad3fb394692440551c97bc644522 (patch)
tree1174444a974f017fffbb1537357022e2e0688e38 /view/tpl/build_query.tpl
parenta0a72a9f6d9e59ddf386a481e57dc64b882ff7ab (diff)
parentee804cd6b197457c2a51e2d37dbd1b03ca76917c (diff)
downloadvolse-hubzilla-9cedc864c296ad3fb394692440551c97bc644522.tar.gz
volse-hubzilla-9cedc864c296ad3fb394692440551c97bc644522.tar.bz2
volse-hubzilla-9cedc864c296ad3fb394692440551c97bc644522.zip
Merge branch 'dev' into 'dev'
Editor contact autocomplete performance & refine stream filter and forum notification behaviour (mostly for performance) See merge request hubzilla/core!1348
Diffstat (limited to 'view/tpl/build_query.tpl')
-rwxr-xr-xview/tpl/build_query.tpl2
1 files changed, 2 insertions, 0 deletions
diff --git a/view/tpl/build_query.tpl b/view/tpl/build_query.tpl
index 2c55a8140..fcb22b605 100755
--- a/view/tpl/build_query.tpl
+++ b/view/tpl/build_query.tpl
@@ -31,6 +31,7 @@
var bParam_verb = "{{$verb}}";
var bParam_net = "{{$net}}";
var bParam_pf = "{{$pf}}";
+ var bParam_unseen = "{{$unseen}}";
function buildCmd() {
var udargs = ((page_load) ? "/load" : "");
@@ -62,6 +63,7 @@
if(bParam_net != "") bCmd = bCmd + "&net=" + bParam_net;
if(bParam_page != 1) bCmd = bCmd + "&page=" + bParam_page;
if(bParam_pf != 0) bCmd = bCmd + "&pf=" + bParam_pf;
+ if(bParam_unseen != 0) bCmd = bCmd + "&unseen=" + bParam_unseen;
return(bCmd);
}