X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=format.php;h=5d7c2bb0af35a875a9de4a931fc623ef886b638d;hb=d8e80aeb824feeb439a51e6a40d862c6e630d6a0;hp=13d79ce53942b8a80d2b9d347bd42c5105913f5d;hpb=653f560504621b6e0fc6d59ec1ba3d9bc7258f43;p=wfpl.git diff --git a/format.php b/format.php index 13d79ce..5d7c2bb 100644 --- a/format.php +++ b/format.php @@ -72,8 +72,8 @@ function _format_positive_decimal($str) { function format_positive_decimal($str) { $str = _format_positive_decimal($str); - if($str === '0.0') { - $str = '0'; + if(substr($str, -2) === '.0') { + $str = substr($str, 0, -2); } return $str; }