diff options
author | ivan <ivan> | 2003-01-13 06:20:03 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-01-13 06:20:03 +0000 |
commit | 917d5476f4802b0efe3ade44669bf402f8a28226 (patch) | |
tree | 7254cc324c722ea009e105e3b0256e1111a59fdd | |
parent | f5dd8fc40d6325f3f53f4e8acc1175b0f5520964 (diff) |
Pg 7.3 fix on 1.4 branch
-rwxr-xr-x | httemplate/edit/part_svc.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/edit/part_svc.cgi b/httemplate/edit/part_svc.cgi index 8ff03056d..683bf9ec5 100755 --- a/httemplate/edit/part_svc.cgi +++ b/httemplate/edit/part_svc.cgi @@ -155,7 +155,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. |