my $file = $pagesources{$page};
my $type = pagetype($file);
if (! $raw || ($raw && ! defined $type)) {
- if (! $archive && $quick) {
+ unless ($archive && $quick) {
# Get the content before populating the
# template, since getting the content uses
# the same template if inlines are nested.
my $ret="";
foreach my $choice (@choices) {
- my $percent=int($choices{$choice} / $total * 100);
+ my $percent=$total > 0 ? int($choices{$choice} / $total * 100) : 0;
if ($percent) {
$ret.="$choice ($percent%) ";
}