From: ivan Date: Mon, 13 Jan 2003 07:26:52 +0000 (+0000) Subject: another Pg 7.3 fix X-Git-Tag: freeside_1_5_0pre1~59 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=27ee26568a1a58b0fb65b7269a43cd3da6d66b35 another Pg 7.3 fix --- diff --git a/httemplate/edit/part_export.cgi b/httemplate/edit/part_export.cgi index d64526dd4..bdf41e2b2 100644 --- a/httemplate/edit/part_export.cgi +++ b/httemplate/edit/part_export.cgi @@ -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!$label!; if ( $type eq 'select' ) { $html .= qq!