DataObjects/Core_person_signup.php
[Pman.Core] / SimpleExcel.php
index 6dfed74..675e348 100644 (file)
@@ -299,7 +299,8 @@ class Pman_Core_SimpleExcel extends Pman
             $worksheet->setRow($start_row +$r, $cfg['row_height']);
         }
         
-        $maxHeight = 20;
+        $line_height = (isset($cfg['line_height'])) ? $cfg['line_height'] : 12;
+        $height = 0;
         
         foreach($cfg['cols']  as $c => $col_cfg) {
             
@@ -348,7 +349,7 @@ class Pman_Core_SimpleExcel extends Pman
             
             if(isset($col_cfg['autoHeight'])){
                 $vv = explode("\n", $v);
-                $height = count($vv) * 20;
+                $height = MAX(count($vv) * $line_height, $height);;
                 $worksheet->setRow($start_row+$r, $height);
             }
         }