X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.default.php;h=3c2e67ebb1181663111ff192dfaf4a4c4cf8f0ac;hb=7286bbfc939360b0fcb573ae075b2b8e899d96c8;hp=5ed7d8d0940ee7523c171a5ad5f70307aaf10751;hpb=962beaf0858de3e911e6d003ab231c3433c78dd9;p=fa-stable.git diff --git a/config.default.php b/config.default.php index 5ed7d8d0..3c2e67eb 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 (m6)"; + // 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")); @@ -86,7 +88,7 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ // locally installed wiki module // $help_base_url = $path_to_root.'/modules/wiki/index.php?n='._('Help').'.'; // context help feed from frontaccounting.net - // $help_base_url = 'http://frontaccounting.net/pmwiki/index.php?n=Help.'; + // $help_base_url = 'http://frontaccounting.net/fawiki/index.php?n=Help.'; // not used $help_base_url = null; @@ -97,7 +99,7 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ $accounts_alpha = 0; /* Date systems. 0 = traditional, 1 = Jalali used by Iran, nabour countries, Afghanistan and some other Central Asian nations, - 2 = Islamic used by other arabic nations */ + 2 = Islamic used by other arabic nations. 3 = traditional, but where non-workday is Friday and start of week is Saturday */ $date_system = 0; /* email stock location if order below reorder-level */ @@ -110,16 +112,17 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ $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 +211,8 @@ if (!defined('ICON_EDIT')) define("ICON_SUBMIT", "ok.gif"); define("ICON_ESCAPE", "escape.png"); } + + /* allow using of multi level sub-types when digits are of same length in account types */ + $use_new_account_types = 0; + ?> \ No newline at end of file