Skip to content

Instantly share code, notes, and snippets.

@jsolid
Last active December 11, 2015 16:58
Show Gist options
  • Save jsolid/4631321 to your computer and use it in GitHub Desktop.
Save jsolid/4631321 to your computer and use it in GitHub Desktop.
Siwapp: Printing template should return a number with precision specified by the user, don't truncate zeros
// File location: siwapp/lib/templating/Common_Twig_Extension.php
function common_twig_extension_round($amount, $decimals = 2)
{
//return round($amount, $decimals);
return number_format(round($amount, $decimals), $decimals, '.', '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment