X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fmanage%2Flocations.php;h=e0c3b1468183ce2e7b230992bab849f8a0460a58;hb=d567a10b7925c8bb97c734e213d6651a979af29d;hp=4b6d291c5333100adfca23f77d1af4c8a0123d53;hpb=231b2de9031a927156a58998fdb5601447732b38;p=fa-stable.git diff --git a/inventory/manage/locations.php b/inventory/manage/locations.php index 4b6d291c..e0c3b146 100644 --- a/inventory/manage/locations.php +++ b/inventory/manage/locations.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $page_security = 11; $path_to_root="../.."; include($path_to_root . "/includes/session.inc"); @@ -127,7 +136,7 @@ while ($myrow = db_fetch_row($result)) label_cell($myrow[0]); label_cell($myrow[1]); edit_button_cell("Edit".$myrow[0], _("Edit")); - edit_button_cell("Delete".$myrow[0], _("Delete")); + delete_button_cell("Delete".$myrow[0], _("Delete")); end_row(); } //END WHILE LIST LOOP @@ -143,6 +152,7 @@ start_form(); start_table($table_style2); +$_POST['email'] = ""; if ($selected_id != -1) { //editing an existing Location @@ -174,7 +184,7 @@ textarea_row(_("Address:"), 'delivery_address', null, 35, 5); text_row_ex(_("Telephone No:"), 'phone', 30, 30); text_row_ex(_("Facsimile No:"), 'fax', 30, 30); -text_row_ex(_("Email:"), 'email', 30, 30); +email_row_ex(_("E-mail:"), 'email', 30); end_table(1); submit_add_or_update_center($selected_id == -1, '', true);