diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-07-07 22:48:01 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-07-07 22:48:01 +0200 |
commit | f6cf992aee86e69d1ea5790c22d4af40c266d79e (patch) | |
tree | b8a87e0be295acbfced5c994629859170cb14269 /include/dir_fns.php | |
parent | f67d9d59afea32a90ea546163da25e36cc4ad9fb (diff) | |
download | volse-hubzilla-f6cf992aee86e69d1ea5790c22d4af40c266d79e.tar.gz volse-hubzilla-f6cf992aee86e69d1ea5790c22d4af40c266d79e.tar.bz2 volse-hubzilla-f6cf992aee86e69d1ea5790c22d4af40c266d79e.zip |
fix sorting of channel suggestions
Diffstat (limited to 'include/dir_fns.php')
-rw-r--r-- | include/dir_fns.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dir_fns.php b/include/dir_fns.php index 29f33f46e..be8175d06 100644 --- a/include/dir_fns.php +++ b/include/dir_fns.php @@ -120,7 +120,7 @@ function dir_sort_links() { unset($tmp['safe']); unset($tmp['q']); unset($tmp['f']); - $forumsurl = $url . $suggest . http_build_query($tmp); + $forumsurl = $url . http_build_query($tmp) . $suggest; $o = replace_macros(get_markup_template('dir_sort_links.tpl'), array( '$header' => t('Directory Options'), |