Allocation js functions moved to allocate.js
[fa-stable.git] / config.php
index 5cdc2b4d258f80bc1a93dd1ee538adab5073efe6..36722df83a2b62b60d13156c9bc6422d6260c721 100644 (file)
@@ -31,16 +31,17 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        }
        else
        {
+               error_reporting(E_USER_WARNING|E_USER_ERROR|E_USER_NOTICE);
                // ini_alter("error_reporting","E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR|E_PARSE");
-               ini_set("display_errors", "Off");
+               ini_set("display_errors", "On");
        }
        // Main Title
        $app_title = "FrontAccounting";
        // application version
-       $version                = "2.0 Pre Alpha";
+       $version                = "2.0 Beta";
 
        // Build for development purposes
-       $build_version  = "2";
+       $build_version  = "23";
 
        // Powered by
        $power_by               = "FrontAccounting";
@@ -56,7 +57,8 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        $use_audit_trail = 0;
 
        /* Integrated base Wiki Help URL or null if not used */
-       $help_base_url = $path_to_root.'/modules/wiki/index.php?n='._('Help').'.';
+       //$help_base_url = $path_to_root.'/modules/wiki/index.php?n='._('Help').'.';
+       $help_base_url = null;
 
        /* per user data/cache directory */
        $comp_path = $path_to_root.'/company';
@@ -169,7 +171,7 @@ if(isset($_SESSION["wa_current_user"])) {
        // static js files path
        $js_path = $path_to_root.'/js/';
        // standard external js scripts included in all files
-       $js_static = array('behaviour.js');
+       $js_static = array('JsHttpRequest.js', 'behaviour.js', 'utils.js', 'inserts.js');
        // additional js source included in header
        $js_lib = $js_userlib = array();