From d98e3b4dc1b91031e077ccc01445364f916ea449 Mon Sep 17 00:00:00 2001 From: Adam Matysiak Date: Thu, 3 Mar 2022 15:07:50 +0100 Subject: [PATCH] :adhesive_bandage: fix for PHP 7.3 and 7.4 --- Classes/PHPExcel/Shared/OLE.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/PHPExcel/Shared/OLE.php b/Classes/PHPExcel/Shared/OLE.php index 42a3c529f..5334128f1 100644 --- a/Classes/PHPExcel/Shared/OLE.php +++ b/Classes/PHPExcel/Shared/OLE.php @@ -285,7 +285,7 @@ public function _readPpsWks($blockId) $pps = new PHPExcel_Shared_OLE_PPS_File($name); break; default: - continue; + break; } fseek($fh, 1, SEEK_CUR); $pps->Type = $type;