diff options
author | M. Dent <dentm42@gmail.com> | 2018-10-25 03:38:05 +0200 |
---|---|---|
committer | M. Dent <dentm42@gmail.com> | 2018-10-25 03:38:05 +0200 |
commit | 9cedc864c296ad3fb394692440551c97bc644522 (patch) | |
tree | 1174444a974f017fffbb1537357022e2e0688e38 /view/tpl/build_query.tpl | |
parent | a0a72a9f6d9e59ddf386a481e57dc64b882ff7ab (diff) | |
parent | ee804cd6b197457c2a51e2d37dbd1b03ca76917c (diff) | |
download | volse-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-x | view/tpl/build_query.tpl | 2 |
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); } |