We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cf3cec9 + 60705e3 commit 1f51858Copy full SHA for 1f51858
interface/web/dns/dns_wizard.php
@@ -201,11 +201,11 @@
201
if(is_array($domains) && sizeof($domains) > 0) {
202
/* We have domains in the list, so create the drop-down-list */
203
foreach( $domains as $domain) {
204
- $domain_select .= "<option value=" . $domain['domain_id'] ;
+ $domain_select .= "<option value=" . $domain['domain'] ;
205
if ($domain['domain'] == $_POST['domain']) {
206
$domain_select .= " selected";
207
}
208
- $domain_select .= ">" . $app->functions->idn_decode($domain['domain']) . ".</option>\r\n";
+ $domain_select .= ">" . $app->functions->idn_decode($domain['domain']) . "</option>\r\n";
209
210
211
else {
0 commit comments