Fix switch...continue for php 7.3

This commit is contained in:
Vitaliy Chesnokov 2019-07-22 13:03:57 +03:00
parent 39534e3dd3
commit e31d0fa339
No known key found for this signature in database
GPG Key ID: AC6BB820C988C8AB

View File

@ -285,7 +285,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;