diff options
author | Mario <mario@mariovavti.com> | 2023-11-21 08:07:40 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-11-21 08:07:40 +0000 |
commit | 1cfa81450cf0ce5691cdbade0a7ab4dfd76ea483 (patch) | |
tree | 20b8f0828505d27d2295eb5a5012a20c28f22de2 | |
parent | 1f18fed3a26fb1b88efb83ab1b0ce2b19ea433f4 (diff) | |
download | volse-hubzilla-1cfa81450cf0ce5691cdbade0a7ab4dfd76ea483.tar.gz volse-hubzilla-1cfa81450cf0ce5691cdbade0a7ab4dfd76ea483.tar.bz2 volse-hubzilla-1cfa81450cf0ce5691cdbade0a7ab4dfd76ea483.zip |
remove follow (does not make any sense to add follow link of the logged in channel), add startpage
-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 9c67ade1f..e4df7e4e5 100644 --- a/include/nav.php +++ b/include/nav.php @@ -95,12 +95,12 @@ function nav($template = 'default') { } if ($channel) { - $userinfo['follow'] = sprintf($channel['xchan_follow'], urlencode(channel_reddress($channel))); $userinfo['id'] = $channel['channel_id']; $userinfo['nick'] = $channel['channel_address']; $userinfo['location'] = $channel['channel_location']; $userinfo['theme'] = $channel['channel_theme']; $userinfo['timezone'] = $channel['channel_timezone']; + $userinfo['startpage'] = $channel['channel_startpage']; } elseif (empty($_SESSION['authenticated'])) { |