From: Andrew Dolgov Date: Mon, 11 Jan 2010 11:46:23 +0000 (+0300) Subject: getFeedTitle: fix for tag vfeeds (2) X-Git-Tag: 1.4.0~98 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=80db11136ea9ee914caee54683943b30cb1b158a;p=tt-rss.git getFeedTitle: fix for tag vfeeds (2) --- diff --git a/functions.php b/functions.php index 9837c6c8..7943adef 100644 --- a/functions.php +++ b/functions.php @@ -3016,7 +3016,7 @@ return __("Fresh articles"); } else if ($id == -4) { return __("All articles"); - } else if ($id === 0) { + } else if ($id === 0 || $id === "0") { return __("Archived articles"); } else if ($id < -10) { $label_id = -$id - 11;