summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-01-11 14:45:51 +0300
committerAndrew Dolgov <[email protected]>2010-01-11 14:45:51 +0300
commitd5e7166533145583baecd2efbd72958da444cc5a (patch)
tree25dc69129cbbd7a4873cfd5780aeda51a7e0f9e3 /functions.php
parentcb216e9d39331542dccd1617b5f8f8a6c47cb92b (diff)
getFeedTitle: fix for tag vfeeds
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 057fa447a..9837c6c87 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) {
return __("Archived articles");
} else if ($id < -10) {
$label_id = -$id - 11;