X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fmanage%2Fgl_account_classes.php;h=d02cfdb44674ae91b3af932dfc3f6eecb69becd8;hb=5e63c6ace55729bbb5ee3b060035a25a4426eb0a;hp=24b7c4e4004bb048d84edb2aec98d2080e8eb045;hpb=0d191c7bff92b9a9bbc44dab48855477edb99ebf;p=fa-stable.git diff --git a/gl/manage/gl_account_classes.php b/gl/manage/gl_account_classes.php index 24b7c4e4..d02cfdb4 100644 --- a/gl/manage/gl_account_classes.php +++ b/gl/manage/gl_account_classes.php @@ -24,7 +24,7 @@ simple_page_mode(false); function can_process() { - global $use_oldstyle_convert; + global $SysPrefs; if (strlen(trim($_POST['id'])) == 0) { @@ -38,7 +38,7 @@ function can_process() set_focus('name'); return false; } - if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1) + if (isset($SysPrefs->use_oldstyle_convert) && $SysPrefs->use_oldstyle_convert == 1) $_POST['Balance'] = check_value('Balance'); return true; } @@ -108,7 +108,7 @@ $result = get_account_classes(check_value('show_inactive')); start_form(); start_table(TABLESTYLE); $th = array(_("Class ID"), _("Class Name"), _("Class Type"), "", ""); -if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1) +if (isset($SysPrefs->use_oldstyle_convert) && $SysPrefs->use_oldstyle_convert == 1) $th[2] = _("Balance Sheet"); inactive_control_column($th); table_header($th); @@ -121,7 +121,7 @@ while ($myrow = db_fetch($result)) label_cell($myrow["cid"]); label_cell($myrow['class_name']); - if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1) + if (isset($SysPrefs->use_oldstyle_convert) && $SysPrefs->use_oldstyle_convert == 1) { $myrow['ctype'] = ($myrow["ctype"] >= CL_ASSETS && $myrow["ctype"] < CL_INCOME ? 1 : 0); label_cell(($myrow['ctype'] == 1 ? _("Yes") : _("No"))); @@ -147,7 +147,7 @@ if ($selected_id != "") $_POST['id'] = $myrow["cid"]; $_POST['name'] = $myrow["class_name"]; - if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1) + if (isset($SysPrefs->use_oldstyle_convert) && $SysPrefs->use_oldstyle_convert == 1) $_POST['ctype'] = ($myrow["ctype"] >= CL_ASSETS && $myrow["ctype"] < CL_INCOME ? 1 : 0); else $_POST['ctype'] = $myrow["ctype"]; @@ -165,7 +165,7 @@ else text_row_ex(_("Class Name:"), 'name', 50, 60); -if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1) +if (isset($SysPrefs->use_oldstyle_convert) && $SysPrefs->use_oldstyle_convert == 1) check_row(_("Balance Sheet"), 'ctype', null); else class_types_list_row(_("Class Type:"), 'ctype', null);