- Improve formatting when generating sponsor entries

This commit is contained in:
Gabor Pali 2014-03-04 20:28:29 +00:00
parent 3b05ed577e
commit e6e9f2c075
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=44121

View file

@ -126,7 +126,12 @@ if ($Submit)
push(@hidden, hidden("Sponsor$Num"));
next unless $sponsor;
push(@sponsors, xml(2, "sponsor", "", xmltext(3, $sponsor)));
push(@sponsors, xml(1, "sponsor", "", xmltext(2, $sponsor)));
}
if (@sponsors)
{
push(@sponsors, "\n");
}
my @tasks;
@ -161,7 +166,6 @@ if ($Submit)
xml(2, "p", "", xmltext(3, @info))),
"\n",
@sponsors,
"\n",
xml(1, "help", "", @tasks),
);
my $contents = join('', @contents);