about summary refs log tree commit homepage
path: root/lib/PublicInbox/View.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/View.pm')
-rw-r--r--lib/PublicInbox/View.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index 83ae99bc..1b52bf86 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -1160,8 +1160,8 @@ sub paginate_recent ($$) {
         # Xapian uses '..' but '-' is perhaps friendier to URL linkifiers
         # if only $after exists "YYYYMMDD.." because "." could be skipped
         # if interpreted as an end-of-sentence
-        $t =~ s/\A(\d{8,14})-// and $after = str2ts($1);
-        $t =~ /\A(\d{8,14})\z/ and $before = str2ts($1);
+        $t =~ s/\A([0-9]{8,14})-// and $after = str2ts($1);
+        $t =~ /\A([0-9]{8,14})\z/ and $before = str2ts($1);
 
         my $ibx = $ctx->{-inbox};
         my $msgs = $ibx->recent($opts, $after, $before);