From: Eric Wong Date: Sat, 12 Mar 2016 07:34:20 +0000 (+0000) Subject: feed: fix brain farts in new_oneline removal X-Git-Tag: v1.0.0~630 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a8265c85b219e92f71d50faa8dda79c7dbbcecc;p=thirdparty%2Fpublic-inbox.git feed: fix brain farts in new_oneline removal Ugh... Fixes: 476fc666c223 (reduce "PublicInbox::Hval->new_oneline" use) --- diff --git a/lib/PublicInbox/Feed.pm b/lib/PublicInbox/Feed.pm index e4831f6a6..ec6925dd1 100644 --- a/lib/PublicInbox/Feed.pm +++ b/lib/PublicInbox/Feed.pm @@ -40,7 +40,7 @@ sub title_tag { my ($title) = @_; $title =~ tr/\t\n / /s; # squeeze spaces # try to avoid the type attribute in title: - $title =~ ascii_html($title); + $title = ascii_html($title); my $type = index($title, '&') >= 0 ? "\ntype=\"html\"" : ''; "$title"; } @@ -117,7 +117,7 @@ sub emit_html_index { my $max = $ctx->{max} || MAX_PER_PAGE; my $feed_opts = get_feedopts($ctx); - my $title = $feed_opts->{description} || ''; + my $title = ascii_html($feed_opts->{description} || ''); my ($footer, $param, $last); my $state = { ctx => $ctx, seen => {}, anchor_idx => 0 }; my $srch = $ctx->{srch};