diff options
author | Mario Vavti <mario@mariovavti.com> | 2021-03-09 21:36:28 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2021-03-09 21:36:28 +0100 |
commit | 7ee495624e71125074a4eb9f5533a7af2db2f6b6 (patch) | |
tree | e4e0c7fc3545c7f970c223da70b21b1e047167fa /Zotlabs/Module/Channel.php | |
parent | 45cc2d7bd8a214f5178b6f4fd3ec3a71606c3c79 (diff) | |
download | volse-hubzilla-7ee495624e71125074a4eb9f5533a7af2db2f6b6.tar.gz volse-hubzilla-7ee495624e71125074a4eb9f5533a7af2db2f6b6.tar.bz2 volse-hubzilla-7ee495624e71125074a4eb9f5533a7af2db2f6b6.zip |
a possible fix for issue #1529
Diffstat (limited to 'Zotlabs/Module/Channel.php')
-rw-r--r-- | Zotlabs/Module/Channel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Channel.php b/Zotlabs/Module/Channel.php index 5b8dbaac4..233e5ac86 100644 --- a/Zotlabs/Module/Channel.php +++ b/Zotlabs/Module/Channel.php @@ -28,7 +28,7 @@ class Channel extends Controller { function init() { if (in_array(substr($_GET['search'], 0, 1), ['@', '!', '?']) || strpos($_GET['search'], 'https://') === 0) - goaway('search' . '?f=&search=' . $_GET['search']); + goaway(z_root() . '/search?f=&search=' . $_GET['search']); $which = null; if (argc() > 1) |