Spreadsheet/Excel/Writer/Parser.php
authoredward <edward@roojs.com>
Thu, 12 May 2016 07:05:25 +0000 (15:05 +0800)
committeredward <edward@roojs.com>
Thu, 12 May 2016 07:05:25 +0000 (15:05 +0800)
Spreadsheet/Excel/Writer/Parser.php

index 3e46e13..12664c3 100644 (file)
@@ -1082,7 +1082,6 @@ class Spreadsheet_Excel_Writer_Parser extends PEAR
     function _cellToRowcol($cell)
     {
         preg_match('/(\$)?([A-I]?[A-Z])(\$)?(\d+)/',$cell,$match);
-        print_r($match);exit;
         // return absolute column if there is a $ in the ref
         $col_rel = empty($match[1]) ? 1 : 0;
         $col_ref = $match[2];
@@ -1101,9 +1100,7 @@ class Spreadsheet_Excel_Writer_Parser extends PEAR
         // Convert 1-index to zero-index
         $row--;
         $col--;
-        
-        print_r(array($row, $col, $row_rel, $col_rel));exit;
-        
+
         return array($row, $col, $row_rel, $col_rel);
     }