diff options
author | zotlabs <mike@macgirvin.com> | 2018-03-21 21:19:18 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-03-21 21:19:18 -0700 |
commit | 1514b0f4e5c053df60b8873b5411c70be727d227 (patch) | |
tree | 6b4824c72ef04df34e147e862d418d8100f26b8f /include/zid.php | |
parent | dc066d4c9b84267bd551ecb122cf3708b6f1472b (diff) | |
download | volse-hubzilla-1514b0f4e5c053df60b8873b5411c70be727d227.tar.gz volse-hubzilla-1514b0f4e5c053df60b8873b5411c70be727d227.tar.bz2 volse-hubzilla-1514b0f4e5c053df60b8873b5411c70be727d227.zip |
initial support for alternative sort orders on the cloud pages. Can be triggered manually but further development is required.
Diffstat (limited to 'include/zid.php')
-rw-r--r-- | include/zid.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/zid.php b/include/zid.php index 5b5601191..5275c6d5a 100644 --- a/include/zid.php +++ b/include/zid.php @@ -109,6 +109,7 @@ function clean_query_string($s = '') { $x = strip_zids(($s) ? $s : \App::$query_string); $x = strip_owt($x); $x = strip_zats($x); + $x = strip_query_param($x,'sort'); return strip_query_param($x,'f'); } |