When generating categories-alpha.xml, always output an </li> even if we

don't have a textual description for a particular port category.

This is the real fix for the bug alluded to in r43602.  It is not clear
to me how more people haven't hit this bug.
This commit is contained in:
Gavin Atkinson 2014-07-09 16:19:41 +00:00
parent 7188cdfdc7
commit 75a384ec04
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=45243

View file

@ -355,8 +355,8 @@ EOF
"<li><a href=\"$key.html\">\u$key</a> <em>($stats{$key})</em>";
if ($category_description{$key}{desc}) {
print $moutf " -- " . $category_description{$key}{desc};
print $moutf "</li>\n";
}
print $moutf "</li>\n";
}
print $moutf "</ul>\n";
}