From: Joe Date: Fri, 28 Apr 2023 21:28:39 +0000 (+0200) Subject: Bug 5694: Request Various Attachment Changes. Fixed the most. X-Git-Url: https://delta.frontaccounting.com/gitweb/?p=fa-stable.git;a=commitdiff_plain;h=fe2e057d97e8a8bc2429025b861f9229c5b9fe05 Bug 5694: Request Various Attachment Changes. Fixed the most. --- diff --git a/includes/ui/attachment.inc b/includes/ui/attachment.inc index 2ee8ce0c..1ee3df12 100644 --- a/includes/ui/attachment.inc +++ b/includes/ui/attachment.inc @@ -81,7 +81,7 @@ class attachments extends simple_crud { $attachments[] = $row; start_table(TABLESTYLE, "width=80%"); - $th = array(_("ID"), _("Docs Title"), _("Filename"), _("Size"), _("Filetype"), _("Date Updated"), "", "", "", ""); + $th = array(_("ID"), _("Doc Title"), _("Filename"), _("Size"), _("Filetype"), _("Doc Date"), "", "", "", ""); table_header($th); if($attachments){ foreach($attachments as $de) { @@ -134,7 +134,7 @@ class attachments extends simple_crud { label_row(_($id_word), $_POST['trans_no']); date_row(_("Date"), 'tran_date'); - text_row_ex(_("Docs Title").':', 'description', 40); + text_row_ex(_("Doc Title").':', 'description', 40); if ($this->selected_id) label_row(_("File:"), sprintf(_("%s [%s bytes]"), $row['filename'], $row['filesize'])); file_row( ($this->selected_id ? _("File change") : _("Select file")) . ":", 'file_attachment_name', 'file_attachment_name');