X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fprefs%2Fuserprefs.inc;h=c33220cf84fa76ed473063d5b847a45815a193b7;hb=af78fbb535a6fedbc2eb70a26ddc39739be2b986;hp=62bfd7e637726f3d760ecae5b5487976043a80bf;hpb=286e6233d6d7d63fbaafea42475ecbd5f4cf0dd0;p=fa-stable.git diff --git a/includes/prefs/userprefs.inc b/includes/prefs/userprefs.inc index 62bfd7e6..c33220cf 100644 --- a/includes/prefs/userprefs.inc +++ b/includes/prefs/userprefs.inc @@ -42,6 +42,9 @@ class user_prefs // set default values, used before login global $dflt_lang; + $this->date_sep = 0; + $this->tho_sep = 0; + $this->dec_sep = 0; $this->language = $dflt_lang; $this->theme = 'default'; @@ -67,8 +70,16 @@ class user_prefs $this->rep_popup = $user["rep_popup"]; $this->query_size = $user["query_size"]; $this->graphic_links = $user["graphic_links"]; - $this->sticky_date = $user["sticky_doc_date"]; - $this->startup_tab = $user['startup_tab']; + if (isset($user["sticky_doc_date"])) + { + $this->sticky_date = $user["sticky_doc_date"]; + $this->startup_tab = $user['startup_tab']; + } + else + { + $this->sticky_date = 0; + $this->startup_tab = "orders"; + } } }