X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fprinters.php;h=d46afeeb0f0ff9aaae9906eca2a20399d61690e7;hb=081465f30442afc4f008a1c7038bef320466a730;hp=20753ac7ae197b5098e701d1dcef43f2bf878c72;hpb=4d4371fb200bb27fd6b680ebd2d1aaa450a0be7e;p=fa-stable.git diff --git a/admin/printers.php b/admin/printers.php index 20753ac7..d46afeeb 100644 --- a/admin/printers.php +++ b/admin/printers.php @@ -9,11 +9,11 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ -$page_security = 15; +$page_security = 'SA_PRINTERS'; $path_to_root=".."; include($path_to_root . "/includes/session.inc"); -page(_("Printer Locations")); +page(_($help_context = "Printer Locations")); include($path_to_root . "/admin/db/printers_db.inc"); include($path_to_root . "/includes/ui.inc"); @@ -59,7 +59,7 @@ if ($Mode == 'Delete') { // PREVENT DELETES IF DEPENDENT RECORDS IN print_profiles - $sql= "SELECT COUNT(*) FROM ".TB_PREF."print_profiles WHERE printer = '$selected_id'"; + $sql= "SELECT COUNT(*) FROM ".TB_PREF."print_profiles WHERE printer = ".db_escape($selected_id); $result = db_query($sql,"check printers relations failed"); $myrow = db_fetch_row($result); if ($myrow[0] > 0) @@ -68,7 +68,7 @@ if ($Mode == 'Delete') } else { - $sql="DELETE FROM ".TB_PREF."printers WHERE id='$selected_id'"; + $sql="DELETE FROM ".TB_PREF."printers WHERE id=".db_escape($selected_id); db_query($sql,"could not delete printer definition"); display_notification(_('Selected printer definition has been deleted')); } @@ -142,7 +142,7 @@ text_row(_("Timeout").':', 'tout', null, 5, 5); end_table(1); -submit_add_or_update_center($selected_id == -1, '', 'default'); +submit_add_or_update_center($selected_id == -1, '', 'both'); end_form();