summaryrefslogtreecommitdiff
path: root/app/models/Entry.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/Entry.php')
-rwxr-xr-xapp/models/Entry.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/app/models/Entry.php b/app/models/Entry.php
index e835f9aed..99edf94b4 100755
--- a/app/models/Entry.php
+++ b/app/models/Entry.php
@@ -487,11 +487,6 @@ class EntryDAO extends Model_pdo {
return $readUnread;
}
- public function countFavorites () { //Deprecated: use countUnreadReadFavorites() instead
- $unreadRead = $this->countUnreadReadFavorites (); //This makes better use of caching
- return $unreadRead['unread'] + $unreadRead['read'];
- }
-
public function optimizeTable() {
$sql = 'OPTIMIZE TABLE ' . $this->prefix . 'entry';
$stm = $this->bd->prepare ($sql);