git-svn-id: https://svn.php.net/repository/pear/packages/Spreadsheet_Excel_Writer/trunk@138435 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Xavier Noguer Gallego 2003-08-21 15:32:34 +00:00
parent e01d86eff5
commit 1f7449a12f
1 changed files with 1 additions and 0 deletions

View File

@ -910,6 +910,7 @@ class Spreadsheet_Excel_Writer_Parser extends PEAR
*/ */
function _cellToPackedRowcol($cell) function _cellToPackedRowcol($cell)
{ {
$cell = strtoupper($cell);
list($row, $col, $row_rel, $col_rel) = $this->_cellToRowcol($cell); list($row, $col, $row_rel, $col_rel) = $this->_cellToRowcol($cell);
if ($col >= 256) { if ($col >= 256) {
$this->raiseError("Column in: $cell greater than 255"); $this->raiseError("Column in: $cell greater than 255");