X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.php;h=dd09acd75406c66504db5a3028e82e29353a3601;hb=431531eebf3ba494002cfbf7ea36f9e82d4975c0;hp=516350a632b7132b1847594dce13fab1f46b0ba3;hpb=5c4f87046a60cacc8e4e77be3b5c02bfd6a2bc98;p=fa-stable.git diff --git a/config.php b/config.php index 516350a6..dd09acd7 100644 --- a/config.php +++ b/config.php @@ -9,13 +9,21 @@ | | \--------------------------------------------------*/ +/* + // Make sure this directory exists and is writable! $session_save_path = dirname(__FILE__).'/tmp/'; +*/ + $session_save_path = session_save_path(); + if (strpos($session_save_path, ";") !== false) + $session_save_path = substr($session_save_path, strpos($session_save_path, ";") + 1); + if (isset($session_save_path)) { session_save_path($session_save_path); unset($session_save_path); } + include_once($path_to_root . "/config_db.php"); include_once($path_to_root . "/includes/lang/language.php"); @@ -44,10 +52,10 @@ // Main Title $app_title = "FrontAccounting"; // application version - $version = "1.0a"; + $version = "1.0.1"; // Build for development purposes - $build_version = "12"; + $build_version = "15"; // Powered by $power_by = "FrontAccounting"; @@ -55,9 +63,16 @@ /* use popup windows for views */ $use_popup_windows = 1; + /*Stock units array*/ $stock_units = array(_("ea."), _("m"), _("kgg"), _("tons"), _("l"), _("lbs"), _("dozen"), _("pack"), _("hrs")); + /* use date picker for all date fields */ + $use_date_picker = 1; + + /* use Audit Trails in GL */ + $use_audit_trail = 0; + $dateformats = array("MMDDYYYY", "DDMMYYYY", "YYYYMMDD"); $dateseps = array("/", ".", "-", " "); $thoseps = array(",", ".", " ");