summaryrefslogtreecommitdiffstats
path: root/templates/part.listfeed.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/part.listfeed.php')
-rw-r--r--templates/part.listfeed.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/part.listfeed.php b/templates/part.listfeed.php
index 070a32dd9..6e988f4df 100644
--- a/templates/part.listfeed.php
+++ b/templates/part.listfeed.php
@@ -12,11 +12,11 @@ if ($favicon == null) {
echo '<li class="feed" data-id="' . $child->getId() . '">';
echo '<a href="#" style="background: url(' . $favicon . ') left center no-repeat; background-size:16px 16px;">' . $child->getTitle() .'</a>';
if ($unreadItems > 0) {
- echo '<span id="unreaditemcounter" class="nonzero">' . $unreadItems . '</span>';
+ echo '<span class="unreaditemcounter nonzero">' . $unreadItems . '</span>';
}
else {
- echo '<span id="unreaditemcounter" class="zero"></span>';
+ echo '<span class="unreaditemcounter zero"></span>';
}
-echo '<button class="svg action" id="feeds_edit" title="' . $l->t('Edit feed') . '"></button>';
-echo '<button class="svg action" id="feeds_delete" onClick="(News.Feed.delete(' . $child->getId(). '))" title="' . $l->t('Delete feed') . '"></button>';
+echo '<button class="svg action feeds_edit" title="' . $l->t('Edit feed') . '"></button>';
+echo '<button class="svg action feeds_delete" onClick="(News.Feed.delete(' . $child->getId(). '))" title="' . $l->t('Delete feed') . '"></button>';
echo '</li>';