about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-12-23 04:15:30 +0000
committerEric Wong <e@80x24.org>2015-12-24 02:06:11 +0000
commit2c091e50045590c13c60896f8fe36b5d1f8c05f1 (patch)
tree9ed8c113e67312611f3765d275680350951bd8cd /lib
parent4c2c2325d2948ec5340e2fcafbee798cf568f5fd (diff)
downloadpublic-inbox-2c091e50045590c13c60896f8fe36b5d1f8c05f1.tar.gz
Users may be iterating through lists and come up with nothing
Diffstat (limited to 'lib')
-rw-r--r--lib/PublicInbox/View.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index 2ca7f95c..1bf44dea 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -853,7 +853,7 @@ sub dump_topics {
         my $order = $state->{order};
         my $subjs = $state->{subjs};
         my $latest = $state->{latest};
-        return "\n[No recent topics]</pre>" unless (scalar @$order);
+        return "\n[No topics in range]</pre>" unless (scalar @$order);
         my $dst = '';
         my $pfx;
         my $prev = 0;