summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-01-11 14:46:23 +0300
committerAndrew Dolgov <[email protected]>2010-01-11 14:46:23 +0300
commit80db11136ea9ee914caee54683943b30cb1b158a (patch)
tree611681f060229f1b82b01244554989cd65a74acd /functions.php
parentd5e7166533145583baecd2efbd72958da444cc5a (diff)
getFeedTitle: fix for tag vfeeds (2)
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index 9837c6c87..7943adef2 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;