X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fmanage%2Fgl_account_classes.php;h=a08a17e4652e40bdc22a97819daec91f6afaec68;hb=274bad27be5e62c7cbed49b22d66270991044009;hp=24b7c4e4004bb048d84edb2aec98d2080e8eb045;hpb=5b8f4c4b4aa8cf996bc071f116bfce1273200fa2;p=fa-stable.git diff --git a/gl/manage/gl_account_classes.php b/gl/manage/gl_account_classes.php index 24b7c4e4..a08a17e4 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); @@ -116,12 +116,11 @@ table_header($th); $k = 0; while ($myrow = db_fetch($result)) { - alt_table_row_color($k); label_cell($myrow["cid"]); - label_cell($myrow['class_name']); - if (isset($use_oldstyle_convert) && $use_oldstyle_convert == 1) + label_cell(''.$myrow['class_name'].''); + 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 +146,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 +164,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);