Password reset mail could take several hours. After fix only a couple of seconds...
[fa-stable.git] / admin / printers.php
index cd44a8e13f7ce4d1951d5c18a1c9f7806db86484..7c68652f502d97cd9caa35ef0451be95ac3c3269 100644 (file)
@@ -59,7 +59,7 @@ if ($Mode == 'Delete')
 {
        // PREVENT DELETES IF DEPENDENT RECORDS IN print_profiles
 
-       if (printer_has_profile($selected_id))
+       if (key_in_foreign_table($selected_id, 'print_profiles', 'printer'))
        {
                display_error(_("Cannot delete this printer definition, because print profile have been created using it."));
        } 
@@ -80,7 +80,7 @@ if ($Mode == 'RESET')
 
 $result = get_all_printers();
 start_form();
-start_table($table_style);
+start_table(TABLESTYLE);
 $th = array(_("Name"), _("Description"), _("Host"), _("Printer Queue"),'','');
 table_header($th);
 
@@ -108,7 +108,7 @@ echo '<br>';
 
 start_form();
 
-start_table($table_style2);
+start_table(TABLESTYLE2);
 
 if ($selected_id != -1) 
 {
@@ -144,4 +144,3 @@ end_form();
 
 end_page();
 
-?>