X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fprefs%2Fuserprefs.inc;h=0f3684776a92d622a34befb0d4d18a6ece56f07a;hb=b235c15fce03f3b6a6eb7187e7c73ad0f3ef33d9;hp=060f764fa570cf0520c07cd3d12a42ab17b183ce;hpb=5e63c6ace55729bbb5ee3b060035a25a4426eb0a;p=fa-stable.git diff --git a/includes/prefs/userprefs.inc b/includes/prefs/userprefs.inc index 060f764f..0f368477 100644 --- a/includes/prefs/userprefs.inc +++ b/includes/prefs/userprefs.inc @@ -93,11 +93,11 @@ class user_prefs $this->sticky_date = 0; $this->startup_tab = "orders"; } - $this->transaction_days = $user['transaction_days']; - $this->save_report_selections = $user['save_report_selections']; - $this->use_date_picker = $user['use_date_picker']; - $this->def_print_destination = $user['def_print_destination']; - $this->def_print_orientation = $user['def_print_orientation']; + $this->transaction_days = @$user['transaction_days']; + $this->save_report_selections = @$user['save_report_selections']; + $this->use_date_picker = @$user['use_date_picker']; + $this->def_print_destination = @$user['def_print_destination']; + $this->def_print_orientation = @$user['def_print_orientation']; if (!file_exists("$path_to_root/themes/$this->theme")) $this->theme = "default";