aboutsummaryrefslogtreecommitdiffstats
path: root/include/conversation.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-04-13 11:58:12 +0200
committerMario Vavti <mario@mariovavti.com>2018-04-13 11:58:12 +0200
commite04d3c45a4fe7e503ea727c54e4c541d40e14661 (patch)
tree5e773cdb978fe1778cb4906620f6f3a4aa2ec2cd /include/conversation.php
parent4aaea422bc78b351f055df66b1491e476bf65e12 (diff)
downloadvolse-hubzilla-e04d3c45a4fe7e503ea727c54e4c541d40e14661.tar.gz
volse-hubzilla-e04d3c45a4fe7e503ea727c54e4c541d40e14661.tar.bz2
volse-hubzilla-e04d3c45a4fe7e503ea727c54e4c541d40e14661.zip
provide visible star status for starred posts
Diffstat (limited to 'include/conversation.php')
-rw-r--r--include/conversation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php
index 4aa097d07..30acd6329 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -1724,7 +1724,7 @@ function network_tabs() {
if(feature_enabled(local_channel(),'star_posts')) {
$tabs[] = array(
'label' => t('Starred'),
- 'url'=>z_root() . '/' . $cmd . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&star=1',
+ 'url'=>z_root() . '/' . $cmd . '/?f=' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '') . '&star=1',
'sel'=>$starred_active,
'title' => t('Favourite Posts'),
);