X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fprefs%2Fuserprefs.inc;h=93f941807bc40143a16205270a8805eb6895259f;hb=fbdfe3f3da62ecf86e3ad978b89efbb6c317a47a;hp=76f82696aa9ffe3ac403af2e7be16a439385c7e8;hpb=c31829537f02787dd94654820dd74168c054b8c4;p=fa-stable.git diff --git a/includes/prefs/userprefs.inc b/includes/prefs/userprefs.inc index 76f82696..93f94180 100644 --- a/includes/prefs/userprefs.inc +++ b/includes/prefs/userprefs.inc @@ -40,11 +40,13 @@ class user_prefs { if ($user == null) { // set default values, used before login - global $dflt_lang; + global $dflt_lang, $dflt_date_sep, $dflt_date_fmt; - $this->date_sep = 0; + $this->date_sep = $dflt_date_sep; + $this->date_format = $dflt_date_fmt; $this->tho_sep = 0; $this->dec_sep = 0; + $this->price_dec = 2; $this->language = $dflt_lang; $this->theme = 'default'; @@ -70,8 +72,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"; + } } }