bugfix [ 1006981 ] Syndicated Content doesn't show channel description

This commit is contained in:
JT Smith 2004-09-12 17:23:30 +00:00
parent 40a36966dd
commit 85d935235e
2 changed files with 3 additions and 2 deletions

View file

@ -10,7 +10,8 @@
- bugfix [ 1025120 ] Pagination in forum thread doesn't work. New default thread template. (Leendert Bottelberghs)
- Fixed a bug where you couldn't delete templates.
- bugfix [ 1025755 ] UILevel can't be set to beginner (0)
- bugfix [ 1006981 ] Syndicated Content doesn't show channel description (Don
Ji).
6.2.1

View file

@ -330,7 +330,7 @@ sub _view_single_feed {
my %var;
$var{"channel.title"} = $rss->{channel}->{title};
$var{"channel.link"} = $rss->{channel}->{link};
$var{"channel.description"} = $rss->{description};
$var{"channel.description"} = $rss->{channel}->{description};
my @items;
$rss->{items} ||= [];
for (my $i = 0; ($i < @{$rss->{items}}) && ($i < $maxHeadlines);$i++) {