summaryrefslogtreecommitdiff
path: root/httemplate/search/477partIIB.html
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2013-09-03 12:47:33 -0700
committerMark Wells <mark@freeside.biz>2013-09-03 12:47:33 -0700
commitaae697565c071b2880d0106b00a4a01d0ddab7bf (patch)
treed460784433d2b5a69101d02d8a446244a5452f33 /httemplate/search/477partIIB.html
parent35d24c449337f95d0e2174cbed55b53eb6c32ca2 (diff)
477 report: state percentages to 3 decimal places, #24834
Diffstat (limited to 'httemplate/search/477partIIB.html')
-rwxr-xr-xhttemplate/search/477partIIB.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/477partIIB.html b/httemplate/search/477partIIB.html
index 5b9b307..cb181f4 100755
--- a/httemplate/search/477partIIB.html
+++ b/httemplate/search/477partIIB.html
@@ -120,7 +120,7 @@ foreach (@col_conds) {
if ( $col_data[0] == 0 ) {
$col_data[$row] = ''; # show nothing in this row, then
} else {
- $col_data[$row] = sprintf('%.2f', 100 * $count / $col_data[0]) . '%';
+ $col_data[$row] = sprintf('%.3f', 100 * $count / $col_data[0]) . '%';
}
} #if $row == 0
$row++;