Fixed: Test Email was always setting use SSL to true, it will now use the state of the checkbox.

This commit is contained in:
Mark McDowall 2012-05-14 11:13:19 -07:00
parent 15279d3e97
commit 2784655fcb
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ function testSmtpSettings() {
//Get the variables
var server = $('#SmtpServer').val();
var port = $('#SmtpPort').val();
var ssl = $('#SmtpUseSsl').val();
var ssl = $('#SmtpUseSsl').prop('checked');
var username = $('#SmtpUsername').val();
var password = $('#SmtpPassword').val();
var fromAddress = $('#SmtpFromAddress').val();