Fix a regression introduced with !204
In extract.php, comparing $index with FALSE using == returns true when $index is 0, so we cannot access the first entry in a zip archive. The correct comparison operator to use is ===.
This is most often not a blocker, but can cause troubles with special zip files.
Edited by Marco Clemencic