Bug tracker
Poll displays incorrect percentages due missing round() function (fix completed in vcs)
Unless I'm looking at this wrong,
$option_pct_txt = sprintf("%.1d%%", ($option_pct * 100));
should be:
$option_pct_txt = sprintf("%.1d%%", round($option_pct * 100));