From 85e854752a1b2cf6ad09d6c5914838d04bde37aa Mon Sep 17 00:00:00 2001 From: DarioSindicic Date: Mon, 30 Sep 2019 17:44:50 +0200 Subject: [PATCH] corner case 99 --- wwwroot/cgi-bin/plugins/graphgooglechartapi.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wwwroot/cgi-bin/plugins/graphgooglechartapi.pm b/wwwroot/cgi-bin/plugins/graphgooglechartapi.pm index c8b3dd68..27e65ca9 100644 --- a/wwwroot/cgi-bin/plugins/graphgooglechartapi.pm +++ b/wwwroot/cgi-bin/plugins/graphgooglechartapi.pm @@ -582,7 +582,7 @@ sub Round_Up(){ $i = int(substr($num,0,2))+1; # pad with 0s - $l = length($i); + $l = 2; while ($l<(length($num))){ $i .= "0"; $l++; -- 2.47.2