Skip to content
Snippets Groups Projects
Commit 60705e3b authored by Till's avatar Till
Browse files

Fixed DNS wizard issue

parent cf3cec9a
No related branches found
No related tags found
No related merge requests found
......@@ -201,11 +201,11 @@ if ($domains_settings['use_domain_module'] == 'y') {
if(is_array($domains) && sizeof($domains) > 0) {
/* We have domains in the list, so create the drop-down-list */
foreach( $domains as $domain) {
$domain_select .= "<option value=" . $domain['domain_id'] ;
$domain_select .= "<option value=" . $domain['domain'] ;
if ($domain['domain'] == $_POST['domain']) {
$domain_select .= " selected";
}
$domain_select .= ">" . $app->functions->idn_decode($domain['domain']) . ".</option>\r\n";
$domain_select .= ">" . $app->functions->idn_decode($domain['domain']) . "</option>\r\n";
}
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment