diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-01-07 19:53:03 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-01-07 19:53:03 +0100 |
commit | 214fa81ec62eeb8a735d2196373c37e89d02666a (patch) | |
tree | b0dfd9d52d6824210b543ba871933f817504cb22 /include/zid.php | |
parent | 98fd3118911313c3f365cc535e9357cd92268534 (diff) | |
parent | 0d415fb3c9db41ee97b7ce933ebc84eab38a1fa4 (diff) | |
download | volse-hubzilla-214fa81ec62eeb8a735d2196373c37e89d02666a.tar.gz volse-hubzilla-214fa81ec62eeb8a735d2196373c37e89d02666a.tar.bz2 volse-hubzilla-214fa81ec62eeb8a735d2196373c37e89d02666a.zip |
Merge remote-tracking branch 'mike/master' into dev
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); |