diff options
author | zotlabs <mike@macgirvin.com> | 2018-01-02 14:04:43 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-01-02 14:04:43 -0800 |
commit | ada578e7e3fc86970be6d1f242f785dae14f5e30 (patch) | |
tree | 8df133a2ee4eab3230d73859d8741fe333db6f0d /include/zid.php | |
parent | 3bd7133ba32d758df935a566c45515a530b35538 (diff) | |
download | volse-hubzilla-ada578e7e3fc86970be6d1f242f785dae14f5e30.tar.gz volse-hubzilla-ada578e7e3fc86970be6d1f242f785dae14f5e30.tar.bz2 volse-hubzilla-ada578e7e3fc86970be6d1f242f785dae14f5e30.zip |
issues with feed parameters
Diffstat (limited to 'include/zid.php')
-rw-r--r-- | include/zid.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/zid.php b/include/zid.php index d1a0fa88a..6ebc9a6ab 100644 --- a/include/zid.php +++ b/include/zid.php @@ -105,8 +105,8 @@ function strip_zats($s) { -function clean_query_string() { - $x = strip_zids(\App::$query_string); +function clean_query_string($s = '') { + $x = strip_zids(($s) ? $s : \App::$query_string); $x = strip_owt($x); $x = strip_zats($x); |