summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2012-10-28 19:26:59 -0400
committerAlessandro Cosentino <cosenal@gmail.com>2012-10-28 19:26:59 -0400
commit4299b35e82480271edf39b4f2a0831b7e0a68970 (patch)
tree6ce62d64e01150edda9141b4c1c050a5ef5ebf1f /templates
parenta7f7f04052ded38c94e15a4e94645f6ab2b39941 (diff)
[News] fix bugs in feedById
Diffstat (limited to 'templates')
-rw-r--r--templates/part.feeds.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/templates/part.feeds.php b/templates/part.feeds.php
index 5e9895870..c2b129ee8 100644
--- a/templates/part.feeds.php
+++ b/templates/part.feeds.php
@@ -40,7 +40,7 @@ $allfeeds = isset($_['allfeeds']) ? $_['allfeeds'] : '';
$lastViewedFeedId = $_['lastViewedFeedId'];
$lastViewedFeedType = $_['lastViewedFeedType'];
$starredCount = $_['starredCount'];
-$sharedCount = $_['sharedCount'];
+//$sharedCount = $_['sharedCount'];
?>
@@ -55,11 +55,14 @@ $sharedCount = $_['sharedCount'];
<span class="unread_items_counter"><?php echo $starredCount ?></span>
</li>
+<?php
+/*
<li class="shared <?php if($lastViewedFeedType == OCA\News\FeedType::SHARED) { echo "active"; }; ?>">
<a class="title" href="#" ><?php echo $l->t('Shared'); ?></a>
<span class="unread_items_counter"><?php echo $sharedCount ?></span>
</li>
-
+*/
+?>
<?php
print_collection_list($allfeeds, $lastViewedFeedId, $lastViewedFeedType);