Quote Originally Posted by tino.schlegel View Post
If you want to have all currencies round to 5 cents its the easiest when you change the zen_round() function in

/includes/functions/functions_general.php

line 173 - 179

Code:
// Wrapper function for round()
  function zen_round($number, $precision) {
/// fix rounding error on GVs etc.
    $number = round($number / 5, $precision) * 5;

    return $number;
  }
Replace the entire function or add the highlighted sections.
Just did this change in 155d and it seems to work fine.
In this 155 version the code to change is on lines 214 - 220!

I am curious that the change has the variable $number whereas the code to be replaced has $value; could this change cause unexpected consequences?

Thanks for any advice!