Merge pull request #10550 from frederic34/patch-21

continue is ambiguous in outer loop for php 7.3
This commit is contained in:
Laurent Destailleur 2019-02-12 13:18:34 +01:00 committed by GitHub
commit 3daa8b0731
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -287,7 +287,7 @@ class PHPExcel_Shared_OLE
$pps = new PHPExcel_Shared_OLE_PPS_File($name); $pps = new PHPExcel_Shared_OLE_PPS_File($name);
break; break;
default: default:
continue; continue 2;
} }
fseek($fh, 1, SEEK_CUR); fseek($fh, 1, SEEK_CUR);
$pps->Type = $type; $pps->Type = $type;