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

index 680ef1b..12664c3 100644 (file)
@@ -1011,12 +1011,10 @@ class Spreadsheet_Excel_Writer_Parser extends PEAR
 
         // Set the high bits to indicate if row or col are relative.
         if ($this->_BIFF_version == 0x0500) {
-            print_r('1');exit;
             $row    |= $col_rel << 14;
             $row    |= $row_rel << 15;
             $col     = pack('C', $col);
         } elseif ($this->_BIFF_version == 0x0600) {
-            print_r('2');exit;
             $col    |= $col_rel << 14;
             $col    |= $row_rel << 15;
             $col     = pack('v', $col);