diff options
author | ivan <ivan> | 2011-10-19 20:01:20 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-10-19 20:01:20 +0000 |
commit | 3fd17682048d80ec2bddf3f957fc4f21b4f1bedb (patch) | |
tree | 45f97c3e73a4f728a651830a1f7010c543fe1f8b | |
parent | b1a5b940cdb756ebc82db5b9abdd741f88049f81 (diff) |
fix add'l package order from self-service
-rw-r--r-- | httemplate/edit/cust_main/first_pkg/select-part_pkg.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/cust_main/first_pkg/select-part_pkg.html b/httemplate/edit/cust_main/first_pkg/select-part_pkg.html index aa3e805a2..709a8ad6c 100644 --- a/httemplate/edit/cust_main/first_pkg/select-part_pkg.html +++ b/httemplate/edit/cust_main/first_pkg/select-part_pkg.html @@ -128,7 +128,7 @@ $opt{saved_domsvc} = 0 unless $opt{saved_domsvc}; my $url_prefix = $opt{'relurls'} ? '' : $p; my @part_pkg = @{ $opt{'part_pkg'} }; -my @first_svc = @{ $opt{'first_svc'} }; +my @first_svc = @{ $opt{'first_svc'} || [] }; my %pkgpart_svcpart = (); my %svcdb = (); |