another Pg 7.3 fix
authorivan <ivan>
Mon, 13 Jan 2003 07:26:52 +0000 (07:26 +0000)
committerivan <ivan>
Mon, 13 Jan 2003 07:26:52 +0000 (07:26 +0000)
httemplate/edit/part_export.cgi

index d64526d..bdf41e2 100644 (file)
@@ -49,11 +49,11 @@ my $widget = new HTML::Widgets::SelectLayers(
       my $label = $optinfo->{label};
       my $type = defined($optinfo->{type}) ? $optinfo->{type} : 'text';
       my $value = $cgi->param($option)
-                  || $part_export->option($option)
-                  || ( (exists $optinfo->{default} && !$part_export->exportnum)
-                       ? $optinfo->{default}
-                       : ''
-                     );
+                 || ( $part_export->exportnum && $part_export->option($option) )
+                 || ( (exists $optinfo->{default} && !$part_export->exportnum)
+                      ? $optinfo->{default}
+                      : ''
+                    );
       $html .= qq!<TR><TD ALIGN="right">$label</TD><TD>!;
       if ( $type eq 'select' ) {
         $html .= qq!<SELECT NAME="$option">!;