diff options
author | ivan <ivan> | 2011-10-19 20:01:19 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-10-19 20:01:19 +0000 |
commit | f17d88bd4cdfb23302ae2cc845ff9ce55e0bc85d (patch) | |
tree | c1e4b3b36bb9a3b9c4c406ae5787ac8ed5305c79 | |
parent | 8cacde15016f8edf7f71a7b25f2b398dc7d6d4ea (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 = (); |