avoid warning if percent value is not numeric

master
Joey Hess 2008-09-20 16:31:27 -04:00
parent 84347a1247
commit 748d375954
1 changed files with 2 additions and 3 deletions

View File

@ -29,12 +29,11 @@ sub preprocess (@) { #{{{
if (defined $params{percent}) {
$fill = $params{percent};
($fill) = $fill =~ m/($percentage_pattern)/; # fill is untainted now
$fill=~s/%$//;
if (! defined $fill || ! length $fill || $fill > 100 || $fill < 0) {
error(sprintf(gettext("illegal percent value %s"), $params{percent}));
}
elsif ($fill !~ /%$/) {
$fill.="%";
}
$fill.="%";
}
elsif (defined $params{totalpages} and defined $params{donepages}) {
add_depends($params{page}, $params{totalpages});