diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-06-03 00:16:46 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-06-03 00:16:46 +0200 |
commit | 2438af1cb5d8c4d439dae315bffb8eaeb5c153a5 (patch) | |
tree | 8312aec4f6ef3f368c3ecff094e8ccf06ee95106 | |
parent | a32626e489bb2d07c77b76c62b8670ba0b1d0569 (diff) | |
download | volse-hubzilla-2438af1cb5d8c4d439dae315bffb8eaeb5c153a5.tar.gz volse-hubzilla-2438af1cb5d8c4d439dae315bffb8eaeb5c153a5.tar.bz2 volse-hubzilla-2438af1cb5d8c4d439dae315bffb8eaeb5c153a5.zip |
the pf argument is required here for some functionality in /network
-rw-r--r-- | Zotlabs/Widget/Activity_filter.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Widget/Activity_filter.php b/Zotlabs/Widget/Activity_filter.php index f9993759c..07389f2bc 100644 --- a/Zotlabs/Widget/Activity_filter.php +++ b/Zotlabs/Widget/Activity_filter.php @@ -40,7 +40,7 @@ class Activity_filter { 'icon' => 'star', 'url'=>z_root() . '/' . $cmd . '/?f=&star=1', 'sel'=>$starred_active, - 'title' => t('Show posts that i have starred') + 'title' => t('Show posts that I have starred') ]; } @@ -69,7 +69,7 @@ class Activity_filter { 'icon' => 'users', 'url' => '#', 'sel' => (($filter_active == 'group') ? true : false), - 'title' => sprintf(t('Show posts that i have filed to %s'), $t['term']), + 'title' => sprintf(t('Show posts that I have filed to %s'), $t['term']), 'sub' => $gsub ]; @@ -121,7 +121,7 @@ class Activity_filter { $fsub[] = [ 'label' => $f['xchan_name'], 'img' => $f['xchan_photo_s'], - 'url' => (($f['private_forum']) ? $f['xchan_url'] : z_root() . '/' . $cmd . '/?f=&cid=' . $f['abook_id']), + 'url' => (($f['private_forum']) ? $f['xchan_url'] : z_root() . '/' . $cmd . '/?f=&pf=1&cid=' . $f['abook_id']), 'sel' => $forum_active, 'title' => t('Private forum'), 'lock' => (($f['private_forum']) ? 'lock' : '') |