aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/build_query.tpl
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-11-01 02:53:12 -0700
committerzotlabs <mike@macgirvin.com>2017-11-01 02:53:12 -0700
commit22d45a8d1ecfa0a0a2b8429ec3233e7099e84b66 (patch)
treeba3e5f2a8d612d5987563c610e078196785856f4 /view/tpl/build_query.tpl
parent7d9d1e0cdb21e47aec20b64148a0714323383914 (diff)
downloadvolse-hubzilla-22d45a8d1ecfa0a0a2b8429ec3233e7099e84b66.tar.gz
volse-hubzilla-22d45a8d1ecfa0a0a2b8429ec3233e7099e84b66.tar.bz2
volse-hubzilla-22d45a8d1ecfa0a0a2b8429ec3233e7099e84b66.zip
support for netselect query
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 a76d4e549..bfe5c8a08 100755
--- a/view/tpl/build_query.tpl
+++ b/view/tpl/build_query.tpl
@@ -29,6 +29,7 @@
var bParam_dbegin = "{{$dbegin}}";
var bParam_mid = "{{$mid}}";
var bParam_verb = "{{$verb}}";
+ var bParam_net = "{{$net}}";
function buildCmd() {
var udargs = ((page_load) ? "/load" : "");
@@ -57,6 +58,7 @@
if(bParam_dbegin != "") bCmd = bCmd + "&dbegin=" + bParam_dbegin;
if(bParam_mid != "") bCmd = bCmd + "&mid=" + bParam_mid;
if(bParam_verb != "") bCmd = bCmd + "&verb=" + bParam_verb;
+ if(bParam_net != "") bCmd = bCmd + "&net=" + bParam_net;
if(bParam_page != 1) bCmd = bCmd + "&page=" + bParam_page;
return(bCmd);
}