{
global $SysPrefs, $db_version;
- if (!isset($_SESSION['SysPrefs']->prefs)) { // cached preferences
+ static $cached; // retrieve values from db once a request. Some values can't be cached between requests
+ // to ensure prefs integrity for all usrs (e.g. gl_close_date).
+
+ if (!$cached) { // cached preferences
$_SESSION['SysPrefs'] = new sys_prefs();
// update current db status for info in log file
$SysPrefs->db_ok = $SysPrefs->prefs['version_id'] == $db_version;
+ $cached = true;
}
$all = $_SESSION['SysPrefs']->prefs;