aboutsummaryrefslogtreecommitdiffstats
path: root/include/conversation.php
diff options
context:
space:
mode:
authormarijus <mario@localhost.localdomain>2014-01-22 23:24:09 +0100
committermarijus <mario@localhost.localdomain>2014-01-22 23:24:09 +0100
commit040d87c999c02df82dd3acad97db498d12f8580a (patch)
tree28a94b010fcf0f02b9b843999fd75f1d0d8f1fbb /include/conversation.php
parenteb868f6df8ce31497992bab1e8c4fd39bee8fe15 (diff)
downloadvolse-hubzilla-040d87c999c02df82dd3acad97db498d12f8580a.tar.gz
volse-hubzilla-040d87c999c02df82dd3acad97db498d12f8580a.tar.bz2
volse-hubzilla-040d87c999c02df82dd3acad97db498d12f8580a.zip
update argument ?f=
Diffstat (limited to 'include/conversation.php')
-rw-r--r--include/conversation.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/conversation.php b/include/conversation.php
index c0bed2a6b..ddcb12b07 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -1387,13 +1387,13 @@ function network_tabs() {
array(
'label' => t('Personal'),
- 'url' => $a->get_baseurl(true) . '/' . $cmd . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&conv=1',
+ 'url' => $a->get_baseurl(true) . '/' . $cmd . '?f=' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '') . '&conv=1',
'sel' => $conv_active,
'title' => t('Posts that mention or involve you'),
),
array(
'label' => t('New'),
- 'url' => $a->get_baseurl(true) . '/' . $cmd . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&new=1' . ((x($_GET,'gid')) ? '&gid=' . $_GET['gid'] : ''),
+ 'url' => $a->get_baseurl(true) . '/' . $cmd . '?f=' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '') . '&new=1' . ((x($_GET,'gid')) ? '&gid=' . $_GET['gid'] : ''),
'sel' => $new_active,
'title' => t('Activity Stream - by date'),
),