This repository was archived by the owner on Jan 2, 2019. It is now read-only.
OLE.php (l. 290): continue error #436
Open
Description
Hello,
In PHPExcel/Shared/OLE.php, function _readPpsWks($blockId), there is an error in the for / switch structure.
In the default case of the switch, you write "continue;". But this does NOT exit the "for" loop. It only exits the "switch" structure, and continue under. You have to write: "continue 2;".
As stated in the PHP documentation:
http://php.net/manual/en/control-structures.continue.php
Yours faithfully,