Home » File Formats » Spreadsheet_Excel_Writer » Bug #608
Column guts always hidden, i.e. always displayed with zero height
Details
| Submitted | 2004-01-22 12:26 UTC |
|---|---|
| From | frank dot wippermueller at web dot de |
| Assigned | dufuz |
| Status | Closed |
| Package | Spreadsheet_Excel_Writer |
| PHP Version | 4.3.4 |
| OS | Win32 |
| Roadmaps | (Not assigned) |
Comments
[2004-01-22 12:26 UTC] frank dot wippermueller at web dot de
Description:
------------
Buggy computation of column guts' max level in function Spreadsheet_Excel_Writer_Worksheet::_store_guts :
Max level always set to zero.
Solution:
Line 2836 of file "Worksheet.php"
"if (count($col_level) >= 6) {"
is non-sense and is fixed by replacing it by
"if (count($this->_colinfo[$i]) >= 6) {"
[2006-05-18 07:22 UTC] michael dot jostmeyer at gsemyweb dot net
Column grouping is not possible/ guts are not displayed.
I think of
2874 $row_level = $this->_outline_row_level;
2875 $col_level = 0;
in function _storeGuts() will set this level always to 0...
there is no property _outline_column_level implemented.