Skip to content

Commit 60705e3

Browse files
committed
Fixed DNS wizard issue
1 parent cf3cec9 commit 60705e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

interface/web/dns/dns_wizard.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,11 +201,11 @@
201201
if(is_array($domains) && sizeof($domains) > 0) {
202202
/* We have domains in the list, so create the drop-down-list */
203203
foreach( $domains as $domain) {
204-
$domain_select .= "<option value=" . $domain['domain_id'] ;
204+
$domain_select .= "<option value=" . $domain['domain'] ;
205205
if ($domain['domain'] == $_POST['domain']) {
206206
$domain_select .= " selected";
207207
}
208-
$domain_select .= ">" . $app->functions->idn_decode($domain['domain']) . ".</option>\r\n";
208+
$domain_select .= ">" . $app->functions->idn_decode($domain['domain']) . "</option>\r\n";
209209
}
210210
}
211211
else {

0 commit comments

Comments
 (0)