X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fmanage%2Fgl_account_classes.php;h=a08a17e4652e40bdc22a97819daec91f6afaec68;hb=f01da91c553b7d256b053475c0f5dc026c47c10d;hp=238ffa0a2018c2f3efdd7c7b984934613872779e;hpb=46c5f7a65a7659a44ae8254c63152074363d3987;p=fa-stable.git diff --git a/gl/manage/gl_account_classes.php b/gl/manage/gl_account_classes.php index 238ffa0a..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); @@ -180,4 +179,3 @@ end_form(); end_page(); -?>