Fixed FA2.4.2 error getting exchange rate from Google
[fa-stable.git] / includes / prefs / sysprefs.inc
index 9a8213c8ab01b11da8edf3b17bfef4a2f49865d3..cce4769c563fcf3cfc80a58a65090ffe24e8af69 100644 (file)
@@ -14,7 +14,7 @@ include_once($path_to_root . "/admin/db/company_db.inc");
 /*
        System and per company prefferences.
        Object is created only with site wide preffernces.
-       After user login refresh_company_prefs method have to be called to initialize company specific settings.
+       After user login refresh method have to be called to re-initialize company specific settings.
 */
 class sys_prefs 
 {
@@ -23,7 +23,7 @@ class sys_prefs
 
        function sys_prefs()
        {
-               global $path_to_root, $db_version;
+               global $path_to_root;
 
                // retrieve set system wide preferences
                include $path_to_root.'/config.default.php';
@@ -38,14 +38,17 @@ class sys_prefs
 
                if (!$this->time_zone)
                        $this->time_zone = 'Europe/Berlin';
+                       
+               if (!isset($this->use_popup_search))
+                       $this->use_popup_search = false;
 
            ini_set('date.timezone', $this->time_zone);
        }
 
        /*
-               Initialize company specific preferrencies.
+               Re-initialize company preferrencies.
        */
-       function refresh_company_prefs()
+       function refresh()
        {
                global $db_version;