diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-08-09 15:47:57 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-08-09 15:47:57 +0200 |
commit | 054c5da294b5254cde2b0ff3dabff713c5eedb46 (patch) | |
tree | 7d181997dd84a5498d2db7844c55710198fc4c2d /include/nav.php | |
parent | 5c5a808290b5e7b0ede1ad3f2a1574c6d7f76dc3 (diff) | |
download | volse-hubzilla-054c5da294b5254cde2b0ff3dabff713c5eedb46.tar.gz volse-hubzilla-054c5da294b5254cde2b0ff3dabff713c5eedb46.tar.bz2 volse-hubzilla-054c5da294b5254cde2b0ff3dabff713c5eedb46.zip |
search form action for channel search needs the channel address
Diffstat (limited to 'include/nav.php')
-rw-r--r-- | include/nav.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/nav.php b/include/nav.php index 05d2d199f..56fe9b901 100644 --- a/include/nav.php +++ b/include/nav.php @@ -175,7 +175,7 @@ function nav($template = 'default') { $search_form_action = 'network'; break; case 'channel': - $search_form_action = 'channel'; + $search_form_action = 'channel/' . App::$profile['channel_address']; break; default: $search_form_action = 'search'; |