summaryrefslogtreecommitdiff
path: root/httemplate/edit
diff options
context:
space:
mode:
authorivan <ivan>2002-12-16 21:52:01 +0000
committerivan <ivan>2002-12-16 21:52:01 +0000
commit50dbca8812cac271c584cbe5629d4583cd11a01c (patch)
tree22f1b24ac53ed5b56b7e937273fd163cc06216b5 /httemplate/edit
parent1eda1b0330897a8bc3b6717cfd970d177b691e48 (diff)
fix for Pg 7.3, are there others?
Diffstat (limited to 'httemplate/edit')
-rwxr-xr-xhttemplate/edit/part_svc.cgi3
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/edit/part_svc.cgi b/httemplate/edit/part_svc.cgi
index 0ee0a468a..d0cc9b645 100755
--- a/httemplate/edit/part_svc.cgi
+++ b/httemplate/edit/part_svc.cgi
@@ -160,7 +160,8 @@ my %defs = (
$html .= '<TD><INPUT TYPE="checkbox"'.
' NAME="exportnum'. $part_export->exportnum. '" VALUE="1" ';
$html .= 'CHECKED'
- if qsearchs( 'export_svc', {
+ if ( $clone || $part_svc->svcpart ) #null svcpart search causing error
+ && qsearchs( 'export_svc', {
exportnum => $part_export->exportnum,
svcpart => $clone || $part_svc->svcpart });
$html .= '>'. $part_export->exportnum. ': '. $part_export->exporttype.