From b470fbfb3debe2cba49d95af16d4e60aad529704 Mon Sep 17 00:00:00 2001 From: FrancescoUK Date: Thu, 7 Jan 2016 20:53:40 +0000 Subject: [PATCH] Fix merge miss in constants.php (#120) --- application/config/constants.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/application/config/constants.php b/application/config/constants.php index e8d2c00ea..5bb0be7c0 100644 --- a/application/config/constants.php +++ b/application/config/constants.php @@ -83,3 +83,8 @@ defined('EXIT_USER_INPUT') OR define('EXIT_USER_INPUT', 7); // invalid user defined('EXIT_DATABASE') OR define('EXIT_DATABASE', 8); // database error defined('EXIT__AUTO_MIN') OR define('EXIT__AUTO_MIN', 9); // lowest automatically-assigned error code defined('EXIT__AUTO_MAX') OR define('EXIT__AUTO_MAX', 125); // highest automatically-assigned error code + +/* + | Precision for calculations performed on decimals + */ +define("PRECISION", 5);