It's bug or need to config something ?

Comments

yaoweizhen’s picture

Status: Active » Needs review
StatusFileSize
new7 KB

I have checked code. The reason is precent can't be computed to 100 exactly.

So i think it's easy to solve.

$data['nextpercent'] = round($data['percent'] + $next_completion);
if ($data['nextpercent'] > 100) {
  $data['nextpercent'] = 100;
}
pvhee’s picture

Could you please provide a patch?