X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fprefs%2Fuserprefs.inc;h=7ba4c0c7ef40b301401ab4a8e2018833621ee7f5;hb=310a0d3ae5aeacbdaa0069546cc2652ac7518e6b;hp=43afba6fff0225fb97466ea2648a1d6692273e61;hpb=0d6c125d288d9b8c533b179f7f88aa748890047a;p=fa-stable.git diff --git a/includes/prefs/userprefs.inc b/includes/prefs/userprefs.inc index 43afba6f..7ba4c0c7 100644 --- a/includes/prefs/userprefs.inc +++ b/includes/prefs/userprefs.inc @@ -33,7 +33,8 @@ class user_prefs var $show_hints; var $query_size; // table pager page length var $graphic_links; // use graphic links - + var $sticky_date; // save date on subsequent document entry + function user_prefs($user=null) { if ($user == null) { @@ -65,6 +66,7 @@ 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"]; } } @@ -169,7 +171,12 @@ class user_prefs { return $this->graphic_links; } - + + function sticky_date() + { + return $this->sticky_date; + } + function set_dec($price_dec, $qty_dec, $exrate_dec, $percent_dec, $showgl, $showcodes) { $this->price_dec = $price_dec;