Author: spadkins
Date: Wed Aug 19 05:55:27 2009
New Revision: 13207

Modified:
   p5ee/trunk/App-Widget/lib/App/Widget/DataTable2.pm

Log:
Fix bug when nowrap was set to 0, it wasn't working

Modified: p5ee/trunk/App-Widget/lib/App/Widget/DataTable2.pm
==============================================================================
--- p5ee/trunk/App-Widget/lib/App/Widget/DataTable2.pm  (original)
+++ p5ee/trunk/App-Widget/lib/App/Widget/DataTable2.pm  Wed Aug 19 05:55:27 2009
@@ -741,7 +741,7 @@
     $cellpadding       = $self->{cellpadding}       || 2;
     $align             = $self->{align}             || "";
     $valign            = $self->{valign}            || "top";
-    $nowrap            = $self->{nowrap}            || 1;
+    $nowrap            = (defined $self->{nowrap}) ? $self->{nowrap} : 1;
     $font_face         = $self->{font_face}         || 
"verdana,geneva,arial,sans-serif";
     $font_size         = $self->{font_size}         || -2;
     $heading_bgcolor   = $self->{heading_bgcolor}   || "#cccccc";

Reply via email to