From 715ce8b7459527bfd6b10613c77e5a3fcfbf9052 Mon Sep 17 00:00:00 2001 From: John BOTELLA Date: Mon, 18 Mar 2024 15:22:00 +0100 Subject: [PATCH] Backport #23972 --- htdocs/includes/tcpdi/tcpdi_parser.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/htdocs/includes/tcpdi/tcpdi_parser.php b/htdocs/includes/tcpdi/tcpdi_parser.php index 174c496d4f4..ef4162d5f4f 100644 --- a/htdocs/includes/tcpdi/tcpdi_parser.php +++ b/htdocs/includes/tcpdi/tcpdi_parser.php @@ -715,8 +715,7 @@ class tcpdi_parser { $next = strcspn($data, "\r\n", $offset); if ($next > 0) { $offset += $next; - list($obj, $unused) = $this->getRawObject($offset, $data); - return $obj; + return $this->getRawObject($offset, $data); } break; }