Improved canRead test for OOCalc files

This commit is contained in:
Mark Baker 2012-07-14 11:45:32 +01:00
parent 78b7019247
commit 15ccc845da
1 changed files with 8 additions and 2 deletions

View File

@ -198,14 +198,20 @@ class PHPExcel_Reader_OOCalc implements PHPExcel_Reader_IReader
$zip = new ZipArchive;
if ($zip->open($pFilename) === true) {
// check if it is an OOXML archive
$mimeType = $zip->getFromName("mimetype");
$stat = $zip->statName('mimetype');
if ($stat && ($stat['size'] <= 255)) {
$mimeType = $zip->getFromName($stat['name']);
} else {
$zip->close();
return FALSE;
}
$zip->close();
return ($mimeType === 'application/vnd.oasis.opendocument.spreadsheet');
}
return false;
return FALSE;
}