X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=admin%2Fattachments.php;h=30090517cdaad37bf38926089c87d3674c338cd1;hb=467fca01c62dd47bcd97ec957a49b0209732c9d0;hp=34ae4c46429ec2fdb1c391c70a15dab370298324;hpb=d9b4de9d7e9d3ba77f6ece752fd6cc988effd8f1;p=fa-stable.git diff --git a/admin/attachments.php b/admin/attachments.php index 34ae4c46..30090517 100644 --- a/admin/attachments.php +++ b/admin/attachments.php @@ -22,7 +22,7 @@ include_once($path_to_root . "/admin/db/attachments_db.inc"); if (isset($_GET['vw'])) $view_id = $_GET['vw']; else -$view_id = find_submit('view'); + $view_id = find_submit('view'); if ($view_id != -1) { $row = get_attachment($view_id); @@ -34,9 +34,9 @@ if ($view_id != -1) $type = ($row['filetype']) ? $row['filetype'] : 'application/octet-stream'; header("Content-type: ".$type); header('Content-Length: '.$row['filesize']); - if ($type == 'application/octet-stream') - header('Content-Disposition: attachment; filename='.$row['filename']); - else + //if ($type == 'application/octet-stream') + // header('Content-Disposition: attachment; filename='.$row['filename']); + //else header("Content-Disposition: inline"); echo file_get_contents(company_path(). "/attachments/".$row['unique_name']); exit(); @@ -144,15 +144,18 @@ if ($Mode == 'RESET') function viewing_controls() { - start_form(); - + global $selected_id; + start_table(TABLESTYLE_NOBORDER); - systypes_list_row(_("Type:"), 'filterType', null, true); + start_row(); + systypes_list_cells(_("Type:"), 'filterType', null, true); + if (list_updated('filterType')) + $selected_id = -1;; + end_row(); end_table(1); - end_form(); } function display_rows($type) @@ -160,8 +163,6 @@ function display_rows($type) $rows = get_attached_documents($type); $th = array(_("#"), _("Description"), _("Filename"), _("Size"), _("Filetype"), _("Date Uploaded"), "", "", "", ""); - div_start('transactions'); - start_form(); start_table(TABLESTYLE); table_header($th); $k = 0; @@ -182,19 +183,16 @@ function display_rows($type) end_row(); } end_table(1); - hidden('filterType', $type); - end_form(); - div_end(); } //---------------------------------------------------------------------------------------- +start_form(true); + viewing_controls(); -if (isset($_POST['filterType'])) - display_rows($_POST['filterType']); +display_rows($_POST['filterType']); -start_form(true); start_table(TABLESTYLE2); @@ -217,8 +215,6 @@ text_row_ex(_("Description").':', 'description', 40); file_row(_("Attached File") . ":", 'filename', 'filename'); end_table(1); -if (isset($_POST['filterType'])) - hidden('filterType', $_POST['filterType']); submit_add_or_update_center($selected_id == -1, '', 'both');