From 1373f57e4b61e90e8a8e947a24174a7dc0f05b1e Mon Sep 17 00:00:00 2001 From: Pablo Zmdl Date: Mon, 11 Nov 2024 12:23:26 +0100 Subject: [PATCH] Typos and comment formatting --- program/lib/Roundcube/rcube_message.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/program/lib/Roundcube/rcube_message.php b/program/lib/Roundcube/rcube_message.php index de94f096f97..eb90ba0ff78 100644 --- a/program/lib/Roundcube/rcube_message.php +++ b/program/lib/Roundcube/rcube_message.php @@ -634,17 +634,17 @@ protected function get_replacement_references(rcube_message_part $part): array */ public function is_referred_attachment(rcube_message_part $part): bool { + // This code is intentionally verbose to keep it comprehensible. $references = $this->get_replacement_references($part); - // This code is intentionally verbose to keep it comprehensible. - // Filter out attachments that are reference by their Content-ID in + // Filter out attachments that are referenced by their Content-ID in // another mime-part. if (!empty($part->content_id) && in_array($part->content_id, $references)) { return true; } - // Filter out attachments that are reference by their - // Content-Location in another mime-part. + // Filter out attachments that are referenced by their Content-Location + // in another mime-part. if (!empty($part->content_location) && in_array($part->content_location, $references)) { return true; }