Skip to content
Snippets Groups Projects
Commit 8e6ace4a authored by Alex ORLUC's avatar Alex ORLUC
Browse files

exclude converted pdf to print folder

parent 82443a15
No related branches found
No related tags found
No related merge requests found
......@@ -948,7 +948,7 @@ abstract class visa_Abstract extends Database
}
//ATTACHMENTS TYPES LOOP
foreach ($_SESSION['attachment_types'] as $attachmentTypeId => $attachmentTypeLabel) {
if($attachmentTypeId <> 'print_folder' || $attachmentTypeId <> 'converted_pdf'){
if($attachmentTypeId <> 'print_folder' && $attachmentTypeId <> 'converted_pdf'){
$joined_files = $this->getJoinedFiles($coll_id, $table, $id, true, $attachmentTypeId);
if (count ($joined_files) > 0){
$str .= '<tr><td><h3>+ '.$attachmentTypeLabel.'</h3></td><td></td><td></td><td></td><td></td></tr>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment