Skip to content

Commit 1f51858

Browse files
author
Till Brehm
committed
Merge branch '6522-dns-zones-can-not-be-added-with-wizard-when-domain-module-is-enabled' into 'develop'
Resolve "DNS zones can not be added with Wizard when domain module is enabled." Closes #6522 See merge request ispconfig/ispconfig3!1757
2 parents cf3cec9 + 60705e3 commit 1f51858

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)