summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-19 05:09:51 +0100
committerAndrew Dolgov <[email protected]>2009-01-19 05:09:51 +0100
commit215af8921a03bc905508a1ff53c5facf28681ca3 (patch)
tree4fc3ce0bb1cd152aa6e14f7350675abd7248316c /functions.php
parenta043ad2929b7da02cccb2869c130e1b1336b4f3b (diff)
add help tip for empty labels
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index d80bbf4e9..3de256c7d 100644
--- a/functions.php
+++ b/functions.php
@@ -5448,7 +5448,11 @@
$message = __("No starred articles found to display.");
break;
default:
- $message = __("No articles found to display.");
+ if ($feed < -10) {
+ $message = __("No articles found to display. You can assign articles to labels manually (see the Actions menu above) or use a filter.");
+ } else {
+ $message = __("No articles found to display.");
+ }
}
if (!$offset) print "<div class='whiteBox'>$message</div>";