Skip to content

Commit

Permalink
DNN-8833: minor javascript fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
galatrash committed Aug 16, 2016
1 parent 5d33aed commit b0f6482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DNN Platform/Website/Install/InstallWizard.aspx
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@
databaseUsername: "",
databasePassword: "",
databaseRunAsOwner: null,
dnnImprovementProgram: $('#<%= chkImprovementProgram.ClientID %>')[0].is(":checked") ? "Y" : "N"
dnnImprovementProgram: $('#<%= chkImprovementProgram.ClientID %>').is(":checked") ? "Y" : "N"
};
$('#<%= lblAccountInfoError.ClientID %>').css('display', 'none');
var databaseType = $('#<%= databaseSetupType.ClientID %> input:checked').val();
Expand Down

0 comments on commit b0f6482

Please sign in to comment.