summaryrefslogtreecommitdiff
path: root/httemplate/edit/part_svc.cgi
diff options
context:
space:
mode:
authorivan <ivan>2004-09-16 13:22:51 +0000
committerivan <ivan>2004-09-16 13:22:51 +0000
commit8fa7d60799d6d49bfe054e07b7b982c33772fb83 (patch)
treecbc3ad4af99b72b884d85e55a4324aebfa1a967d /httemplate/edit/part_svc.cgi
parent19826b5e1b5a7c8429fb1b2991b0d938a08f51de (diff)
add uid to mass duplicate checking on export changes, fix bug in new export editing, error message includes the number of duplicate customers also
Diffstat (limited to 'httemplate/edit/part_svc.cgi')
-rwxr-xr-xhttemplate/edit/part_svc.cgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/edit/part_svc.cgi b/httemplate/edit/part_svc.cgi
index 89f75a5f4..befd9b24a 100755
--- a/httemplate/edit/part_svc.cgi
+++ b/httemplate/edit/part_svc.cgi
@@ -25,9 +25,9 @@ if ( $cgi->param('magic') eq 'process' ) {
} );
my %exportnums =
- map { $_->exportnum => $cgi->param('exportnum'.$_->exportnum) }
+ map { $_->exportnum => ( $cgi->param('exportnum'.$_->exportnum) || '') }
qsearch('part_export', {} );
-
+
if ( $svcpart ) {
$error = $new->replace($old, '1.3-COMPAT', [ 'usergroup' ], \%exportnums );
} else {