diff options
author | ivan <ivan> | 2011-03-26 00:10:06 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-03-26 00:10:06 +0000 |
commit | 47fc30a4f3961e2bdc90dbd2c2a2389ef3ef3663 (patch) | |
tree | 63a57fba8796551816468f7875b8ddde52b56ec4 | |
parent | 59f21eac11f63f8aaf132ac6f47cc0ab358e92d7 (diff) |
fix export-less DID selection, RT#12178
-rw-r--r-- | httemplate/elements/select-did.html | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/httemplate/elements/select-did.html b/httemplate/elements/select-did.html index dd2e8e531..17eac4850 100644 --- a/httemplate/elements/select-did.html +++ b/httemplate/elements/select-did.html @@ -113,17 +113,16 @@ my @exports = $part_svc->part_export_did; if ( scalar(@exports) > 1 ) { die "more than one DID-providing export attached to svcpart $svcpart"; } +my $export = '' +$export = $exports[0] if scalar(@exports); my $use_selector = scalar(@exports) ? 1 : 0; -my $export; -$export = $exports[0] if scalar(@exports); - my $bulknum = $opt{'bulknum'} || 0; -my $country = $export->option('country') || - $conf->config('countrydefault') || - 'US'; +my $country = ( $export && $export->option('country') ) + || $conf->config('countrydefault') + || 'US'; #my $field = $opt{'field'} || 'phonenum'; |