Fixed a reference error

git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@81990 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
Maarten Balliauw 2011-10-25 06:02:36 +00:00
parent f2310e05d0
commit d68efe81d7
1 changed files with 1 additions and 1 deletions

View File

@ -536,7 +536,7 @@ class PHPExcel_Writer_Excel5_Workbook extends PHPExcel_Writer_Excel5_BIFFwriter
// Create EXTERNSHEET for each worksheet
for ($i = 0; $i < $countSheets; ++$i) {
$this->_writeExternsheet($phpExcel->getSheet($i)->getTitle());
$this->_writeExternsheet($this->_phpExcel->getSheet($i)->getTitle());
}
}