X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=config.default.php;h=44b0d8e252a21d39b6f085091cd4cde265bd6840;hb=21ba0553185531c12f16efef9010033d5dd62cdc;hp=cfc371708e0dbc6fb7942a21ede0dd04a12b98d3;hpb=55ce974f2ab21987751af69f9f2eddd8672ef563;p=fa-stable.git diff --git a/config.default.php b/config.default.php index cfc37170..44b0d8e2 100644 --- a/config.default.php +++ b/config.default.php @@ -27,7 +27,7 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ $error_logfile = dirname(__FILE__).'/tmp/errors.log'; $debug = 1; $show_sql = 0; - $go_debug = 1; + $go_debug = 0; $pdf_debug = 0; // set $sql_trail to 1 only if you want to perform bugtracking sql trail // Warning: this produces huge amount of data in sql_trail table. @@ -56,7 +56,9 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ // Main Title $app_title = "FrontAccounting"; // application version - $version = "2.2 RC"; + $version = "2.3 CVS (m9)"; + // src-data compatibility check. Do not change. + $core_version = "2.3"; // Build for development purposes $build_version = date("d.m.Y", filemtime("$path_to_root/CHANGELOG.txt")); @@ -106,20 +108,24 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ /* print_invoice_no. 0 = print reference number, 1 = print invoice number */ $print_invoice_no = 0; + /* 1 = print Subtotal tax excluded, tax and Total tax included */ + $alternative_tax_include_on_docs = 0; + $dateformats = array("MMDDYYYY", "DDMMYYYY", "YYYYMMDD"); $dateseps = array("/", ".", "-", " "); $thoseps = array(",", ".", " "); $decseps = array(".", ","); + // defalt dateformats and dateseps indexes used before user login + $dflt_date_fmt = 0; + $dflt_date_sep = 0; $pagesizes = array("Letter", "A4"); // default PDF pagesize /* Default border and spacing for tables */ /* Should be moved to CSS */ - if (!isset($_SESSION['bordercolor'])) - $_SESSION['bordercolor'] = "#8cacbb"; - $table_style = "cellpadding=3 border=1 bordercolor='".$_SESSION['bordercolor']."' class='tablestyle'"; - $table_style2 = "cellpadding=3 border=1 bordercolor='#cccccc' class='tablestyle2'"; + $table_style = "class='tablestyle'"; + $table_style2 = "class='tablestyle2'"; /* Accounts Payable */ /* System check to see if quantity charged on purchase invoices exceeds the quantity received. @@ -208,4 +214,5 @@ if (!defined('ICON_EDIT')) define("ICON_SUBMIT", "ok.gif"); define("ICON_ESCAPE", "escape.png"); } + ?> \ No newline at end of file