|
@@ -2918,7 +2918,7 @@ class PHPExcel_Reader_Excel5 extends PHPExcel_Reader_Abstract implements PHPExce
|
|
// this fragment compressed
|
|
// this fragment compressed
|
|
$len = min($charsLeft, $limitpos - $pos);
|
|
$len = min($charsLeft, $limitpos - $pos);
|
|
for ($j = 0; $j < $len; ++$j) {
|
|
for ($j = 0; $j < $len; ++$j) {
|
|
- $retstr .= $recordData{$pos + $j} . chr(0);
|
|
|
|
|
|
+ $retstr .= $recordData[$pos + $j] . chr(0);
|
|
}
|
|
}
|
|
$charsLeft -= $len;
|
|
$charsLeft -= $len;
|
|
$isCompressed = false;
|
|
$isCompressed = false;
|
|
@@ -4543,9 +4543,9 @@ class PHPExcel_Reader_Excel5 extends PHPExcel_Reader_Abstract implements PHPExce
|
|
$hyperlinkType = 'UNC';
|
|
$hyperlinkType = 'UNC';
|
|
} else if (!$isFileLinkOrUrl) {
|
|
} else if (!$isFileLinkOrUrl) {
|
|
$hyperlinkType = 'workbook';
|
|
$hyperlinkType = 'workbook';
|
|
- } else if (ord($recordData{$offset}) == 0x03) {
|
|
|
|
|
|
+ } else if (ord($recordData[$offset]) == 0x03) {
|
|
$hyperlinkType = 'local';
|
|
$hyperlinkType = 'local';
|
|
- } else if (ord($recordData{$offset}) == 0xE0) {
|
|
|
|
|
|
+ } else if (ord($recordData[$offset]) == 0xE0) {
|
|
$hyperlinkType = 'URL';
|
|
$hyperlinkType = 'URL';
|
|
}
|
|
}
|
|
|
|
|