diff --git a/pool/page_blocks.php b/pool/page_blocks.php index 0b9bd101..2d2dbfad 100644 --- a/pool/page_blocks.php +++ b/pool/page_blocks.php @@ -194,6 +194,19 @@ function doblocks($data, $user) { $pg .= ''; $count = $ans['rows']; + $colpct = 0; + for ($i = $count - 1; $i >= 0; $i--) + { + $conf = $ans['confirmed:'.$i]; + $diffratio = $ans['diffratio:'.$i]; + if ($diffratio > 0) + { + $colpct += 100.0 * $diffratio; + $ans['colpct:'.$i] = $colpct; + if ($conf != 'O' and $conf != 'R') + $colpct = 0; + } + } for ($i = 0; $i < $count; $i++) { if (($i % 2) == 0) @@ -277,9 +290,10 @@ function doblocks($data, $user) if ($diffratio > 0) { $pct = 100.0 * $diffratio; + $colpct = $ans['colpct:'.$i]; if ($conf != 'O' and $conf != 'R') { - list($fg, $bg) = pctcolour($pct); + list($fg, $bg) = pctcolour($colpct); $bpct = "$approx".number_format($pct, 3).'%'; $bg = " bgcolor=$bg"; }