diff options
author | Mario <mario@mariovavti.com> | 2024-07-19 11:55:21 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-07-19 11:55:21 +0000 |
commit | 1861eeeb0acbcd7b22b8b447e47207959f54043e (patch) | |
tree | 6b4f54c02fd6a9d4deefcd065c5a303d79b85b3f /view/js | |
parent | 663aeca2a7dcbb41f219b1377bb7b7b33c4f9c2b (diff) | |
download | volse-hubzilla-1861eeeb0acbcd7b22b8b447e47207959f54043e.tar.gz volse-hubzilla-1861eeeb0acbcd7b22b8b447e47207959f54043e.tar.bz2 volse-hubzilla-1861eeeb0acbcd7b22b8b447e47207959f54043e.zip |
more f arg removal
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js index 3307086d4..2ad7b86fb 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1144,7 +1144,7 @@ function pageUpdate() { bParam_page = 1; } - update_url = baseurl + '/' + decodeURIComponent(page_query) + '/?aj=1&page=' + bParam_page + extra_args ; + update_url = baseurl + '/' + decodeURIComponent(page_query) + '?aj=1&page=' + bParam_page + extra_args ; $("#page-spinner").show(); update_mode = 'append'; |