From 88b997d1206e4f44e96a430627953661d615c28e Mon Sep 17 00:00:00 2001 From: "florian.azizian" <florian.azizian@maarch.org> Date: Wed, 10 Jun 2020 15:44:55 +0200 Subject: [PATCH] FIX #14118 TIME 0:30 Version attachments always hidden --- src/app/attachment/controllers/AttachmentController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/attachment/controllers/AttachmentController.php b/src/app/attachment/controllers/AttachmentController.php index 771a33ac87d..5975cca26df 100755 --- a/src/app/attachment/controllers/AttachmentController.php +++ b/src/app/attachment/controllers/AttachmentController.php @@ -118,8 +118,8 @@ class AttachmentController if (!empty($attachment['originId'])) { $oldVersions = AttachmentModel::get([ 'select' => ['res_id as "resId"', 'relation'], - 'where' => ['(origin_id = ? OR res_id = ?)', 'res_id != ?', 'status not in (?)', 'attachment_type not in (?)'], - 'data' => [$attachment['originId'], $attachment['originId'], $args['id'], ['DEL'], $excludeAttachmentTypes], + 'where' => ['(origin_id = ? OR res_id = ?)', 'res_id != ?', 'status not in (?)'], + 'data' => [$attachment['originId'], $attachment['originId'], $args['id'], ['DEL']], 'orderBy' => ['relation DESC'] ]); } -- GitLab