From: Jason Woofenden Date: Sat, 30 Jun 2012 06:24:49 +0000 (-0400) Subject: make format_decimal always omit the ".0" suffix X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;h=d8e80aeb824feeb439a51e6a40d862c6e630d6a0;hp=653f560504621b6e0fc6d59ec1ba3d9bc7258f43;p=wfpl.git make format_decimal always omit the ".0" suffix --- 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; }