summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-09 14:09:34 +0100
committerAndrew Dolgov <[email protected]>2007-08-09 14:09:34 +0100
commit945c243e355d8f06779a395bda2f66bb0fd795c2 (patch)
tree340a4bc56045f068b29c71e0b956fb8d4866b8bb /functions.php
parente4f4b46f9d5d42dc53c4e2c5489da31a8ce10c26 (diff)
more published feeds work
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'");