Access to system settings moved from global scope to SysPrefs.
[fa-stable.git] / includes / prefs / userprefs.inc
index dcbc9fcd8c22c05a343ac0809a843ac5c3731582..060f764fa570cf0520c07cd3d12a42ab17b183ce 100644 (file)
@@ -45,10 +45,10 @@ class user_prefs
        {
                if ($user == null) { 
                        // set default values, used before login
-                       global $dflt_lang, $dflt_date_sep, $dflt_date_fmt;
-                       
-                       $this->date_sep = $dflt_date_sep;
-                       $this->date_format = $dflt_date_fmt;
+                       global $dflt_lang, $SysPrefs;
+
+                       $this->date_sep = $SysPrefs->dflt_date_sep;
+                       $this->date_format = $SysPrefs->dflt_date_fmt;
                        $this->tho_sep = 0;
                        $this->dec_sep = 0;
                        $this->price_dec = 2;
@@ -180,8 +180,8 @@ class user_prefs
 
        function date_display() 
        {
-               global $dateseps;
-               $sep = $dateseps[$this->date_sep];
+               global $SysPrefs;
+               $sep = $SysPrefs->dateseps[$this->date_sep];
                if ($this->date_format == 0)
                        return "m".$sep."d".$sep."Y";
                elseif ($this->date_format == 1)