fixed error in sheets()
git-svn-id: https://svn.php.net/repository/pear/packages/Spreadsheet_Excel_Writer/trunk@116982 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
5cdea13592
commit
906d894793
|
|
@ -196,17 +196,20 @@ class Workbook extends BIFFwriter
|
|||
/**
|
||||
* An accessor for the _worksheets[] array
|
||||
* Returns an array of the worksheet objects in a workbook
|
||||
* It actually calls to worksheets()
|
||||
*
|
||||
* @access public
|
||||
* @see worksheets()
|
||||
* @return array
|
||||
*/
|
||||
function sheets()
|
||||
{
|
||||
return($this->_worksheets());
|
||||
return $this->worksheets();
|
||||
}
|
||||
|
||||
/**
|
||||
* An accessor for the _worksheets[] array.
|
||||
* Returns an array of the worksheet objects in a workbook
|
||||
*
|
||||
* @access public
|
||||
* @return array
|
||||
|
|
|
|||
Loading…
Reference in New Issue