X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Ftags.php;h=d6f46da97d06520ee7fc3c90832a1a8f762a253f;hb=7840540918bfd37c886877a5d52e3ba0b3373289;hp=4bc0c8548b6ec83f365d5c491612e63a57651bb1;hpb=82d11f8bcfcdfbb353ae54065e4eb11b19ce74d4;p=fa-stable.git diff --git a/admin/tags.php b/admin/tags.php index 4bc0c854..d6f46da9 100644 --- a/admin/tags.php +++ b/admin/tags.php @@ -16,9 +16,9 @@ include_once($path_to_root . "/admin/db/tags_db.inc"); include($path_to_root . "/includes/ui.inc"); // Set up page security based on what type of tags we're working with -if (@$_GET['type'] == "account" || $_POST['type'] == TAG_ACCOUNT) { +if (@$_GET['type'] == "account" || get_post('type') == TAG_ACCOUNT) { $page_security = 'SA_GLACCOUNTTAGS'; -} else if(@$_GET['type'] == "dimension" || $_POST['type'] == TAG_DIMENSION) { +} else if(@$_GET['type'] == "dimension" || get_post('type') == TAG_DIMENSION) { $page_security = 'SA_DIMTAGS'; } @@ -124,7 +124,7 @@ if ($Mode == 'RESET') $result = get_tags($_POST['type'], check_value('show_inactive')); start_form(); -start_table($table_style); +start_table(TABLESTYLE); $th = array(_("Tag Name"), _("Tag Description"), "", ""); inactive_control_column($th); table_header($th); @@ -147,7 +147,7 @@ end_table(1); //----------------------------------------------------------------------------------- -start_table($table_style2); +start_table(TABLESTYLE2); if ($selected_id != -1) // We've selected a tag {