summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/part.feed.unread.php2
-rw-r--r--templates/part.listfeed.php2
-rw-r--r--templates/part.listfolder.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/part.feed.unread.php b/templates/part.feed.unread.php
index 96df79af4..a933a2f75 100644
--- a/templates/part.feed.unread.php
+++ b/templates/part.feed.unread.php
@@ -22,7 +22,7 @@
{{ unreadCountFormatter(getTotalUnreadCount()) }}
</span>
<button class="svg action mark-read-icon"
- ng-click="subscriptionsBusinessLayer.markAllRead()"
+ ng-click="subscriptionsBusinessLayer.markRead()"
title="<?php p($l->t('Mark read')) ?>"
ng-show="getTotalUnreadCount() > 0"
oc-tooltip data-placement="bottom"></button>
diff --git a/templates/part.listfeed.php b/templates/part.listfeed.php
index 971f0b922..ca49823f6 100644
--- a/templates/part.listfeed.php
+++ b/templates/part.listfeed.php
@@ -45,7 +45,7 @@
<button class="svg action mark-read-icon"
ng-show="feedBusinessLayer.getUnreadCount(feed.id) > 0 && feed.id"
- ng-click="feedBusinessLayer.markFeedRead(feed.id)"
+ ng-click="feedBusinessLayer.markRead(feed.id)"
title="<?php p($l->t('Mark read')); ?>"
oc-tooltip></button>
diff --git a/templates/part.listfolder.php b/templates/part.listfolder.php
index fb30f1d55..23775f971 100644
--- a/templates/part.listfolder.php
+++ b/templates/part.listfolder.php
@@ -39,7 +39,7 @@
<button class="svg action mark-read-icon"
ng-show="folderBusinessLayer.getUnreadCount(folder.id) > 0 && folder.id"
- ng-click="folderBusinessLayer.markFolderRead(folder.id)"
+ ng-click="folderBusinessLayer.markRead(folder.id)"
title="<?php p($l->t('Mark read')); ?>"
oc-tooltip></button>