X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=taxes%2Fitem_tax_types.php;h=f1414efcfe084145479ad4ac5c8ef2c80224bb7f;hb=0bf933423b9645bcb57390c478d4fdaf0c895049;hp=295d359519f9e93d1f7d560162b1221ea6ec4fcb;hpb=0b253e5e0d23400838d3bfb4f27fb3fb2637b3ab;p=fa-stable.git diff --git a/taxes/item_tax_types.php b/taxes/item_tax_types.php index 295d3595..f1414efc 100644 --- a/taxes/item_tax_types.php +++ b/taxes/item_tax_types.php @@ -9,12 +9,12 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ +$page_security = 'SA_ITEMTAXTYPE'; $path_to_root = ".."; -$page_security = 3; include($path_to_root . "/includes/session.inc"); -page(_("Item Tax Types")); +page(_($help_context = "Item Tax Types")); include_once($path_to_root . "/taxes/db/item_tax_types_db.inc"); include_once($path_to_root . "/taxes/db/tax_types_db.inc"); @@ -72,7 +72,7 @@ if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') function can_delete($selected_id) { - $sql= "SELECT COUNT(*) FROM ".TB_PREF."stock_master WHERE tax_type_id=$selected_id"; + $sql= "SELECT COUNT(*) FROM ".TB_PREF."stock_master WHERE tax_type_id=".db_escape($selected_id); $result = db_query($sql, "could not query stock master"); $myrow = db_fetch_row($result); if ($myrow[0] > 0)