Added missing tax_algorithm retrieval in read_po_header()
[fa-stable.git] / config.default.php
index 60205becd5a74c6aad6b5d539f6036ea418fcc70..6705918f5be30bc876144d02a1c1065832b66c27 100644 (file)
@@ -11,7 +11,7 @@
 ***********************************************************************/
     //--------------------------------------------------
 
-       // User configurable variables
+       // User configurable variables
        //---------------------------------------------------
 
        /*Show debug messages returned from an error on the page.
 
 if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_to_root']))
        die("Restricted access");
+
+       if (!ini_get('date.timezone'))
+       ini_set('date.timezone', 'Europe/Berlin');
+
        // Log file for error/warning messages. Should be set to any location
        // writable by www server. When set to empty string logging is switched off. 
        // Special value 'syslog' can be used for system logger usage (see php manual).
@@ -39,7 +43,7 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        $select_trail   = 0; // track also SELECT queries
        if ($go_debug > 0)
        {
-               error_reporting(E_ALL);
+               error_reporting(-1);
                ini_set("display_errors", "On");
        }
        else
@@ -56,10 +60,6 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        }               
        // Main Title
        $app_title = "FrontAccounting";
-       // application version
-       $version                = "2.3 Beta";
-        // 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"));
@@ -68,6 +68,9 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        $power_by               = "FrontAccounting";
        $power_url              = "http://frontaccounting.com";
 
+       /* Save Report selections (a value > 0 means days to save. 0 = no save) */
+       $save_report_selections = 0;
+
        /* use popup windows for views */
        $use_popup_windows = 1;
 
@@ -143,6 +146,12 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
 
        $config_allocation_settled_allowance = 0.005;
 
+       /* Allow negative prices for dummy/service items. To be moved to GL db settings */
+       $allow_negative_prices = 1;
+
+       /* Show menu category icons in core themes */
+       $show_menu_category_icons = 0;
+       
        // Internal configurable variables
        //-----------------------------------------------------------------------------------