From 22147612539ed72540cfb979c6767a4a7cbba177 Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Thu, 20 Jan 2011 11:20:33 -0500 Subject: [PATCH] Added global currency format settings in $conf array. --- interface/lib/config.inc.php | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/interface/lib/config.inc.php b/interface/lib/config.inc.php index c6250c5..b601a87 100644 --- a/interface/lib/config.inc.php +++ b/interface/lib/config.inc.php @@ -133,6 +133,11 @@ $conf['language'] = 'en'; $conf['debug_language'] = false; +//** Currency formatting +$conf['number_format_decimals'] = 2; +$conf['number_format_dec_point'] = ','; +$conf['number_format_thousands_sep'] = ''; + //** Misc. $conf['interface_logout_url'] = ''; // example: http://www.domain.tld/ -- Gitblit v1.9.1