summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/functions.php b/functions.php
index a77d2f85c..8157d12d2 100644
--- a/functions.php
+++ b/functions.php
@@ -2279,6 +2279,8 @@
function getFeedTitle($link, $id) {
if ($id == -1) {
return __("Starred articles");
+ } else if ($id == -2) {
+ return __("Published articles");
} else if ($id < -10) {
$label_id = -10 - $id;
$result = db_query($link, "SELECT description FROM ttrss_labels WHERE id = '$label_id'");