From 78a7338f7bd05db1020b6fea2b238841774fee44 Mon Sep 17 00:00:00 2001 From: swag Date: Wed, 10 May 2023 16:07:14 -0400 Subject: [PATCH] More RSS validation stuff --- lib/PostText/Model/Remark.pm | 2 +- lib/PostText/Model/Thread.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/PostText/Model/Remark.pm b/lib/PostText/Model/Remark.pm index 4bf0485..e08e1ea 100644 --- a/lib/PostText/Model/Remark.pm +++ b/lib/PostText/Model/Remark.pm @@ -6,7 +6,7 @@ has [qw{pg hr}]; has per_page => 5; -has date_format => 'Dy, FMDD Mon YYYY HH24:MI:SS TZ'; +has date_format => 'Dy, FMDD Mon YYYY HH24:MI:SS OF'; sub by_page_for($self, $thread_id, $this_page = 1) { my $date_format = $self->date_format; diff --git a/lib/PostText/Model/Thread.pm b/lib/PostText/Model/Thread.pm index 26d35c2..bf0bc25 100644 --- a/lib/PostText/Model/Thread.pm +++ b/lib/PostText/Model/Thread.pm @@ -6,7 +6,7 @@ has [qw{pg hr}]; has per_page => 5; -has date_format => 'Dy, FMDD Mon YYYY HH24:MI:SS TZ'; +has date_format => 'Dy, FMDD Mon YYYY HH24:MI:SS OF'; sub create($self, $author, $title, $body, $hidden = 0, $flagged = 0) { my $clean_body = $self->hr->process($body);