Modified:
/trunk/base/field.php
=======================================
--- /trunk/base/field.php Sun Apr 1 21:40:09 2012
+++ /trunk/base/field.php Mon Apr 2 11:34:40 2012
@@ -67,10 +67,10 @@
}
else
{
- if ($this->type != 'tag')
- $this->value = round($val, $this->precision);
- else
+ if ($this->type == 'tag')
$this->value = $val;
+ else
+ $this->value = round($val, $this->precision);
}
}