diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-08-09 13:47:57 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-08-09 15:50:49 +0200 |
commit | 7c842f31705449f4032df996a929289747fe6ab1 (patch) | |
tree | 3a9af7287fe3dc50648c2e8cde4242a0ec1c6dd8 /include/nav.php | |
parent | 4e6539efec70027facb70233254e9b47f8e86c6d (diff) | |
download | volse-hubzilla-7c842f31705449f4032df996a929289747fe6ab1.tar.gz volse-hubzilla-7c842f31705449f4032df996a929289747fe6ab1.tar.bz2 volse-hubzilla-7c842f31705449f4032df996a929289747fe6ab1.zip |
search form action for channel search needs the channel address
(cherry picked from commit 054c5da294b5254cde2b0ff3dabff713c5eedb46)
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'; |