Skip to content

Commit f3bd605

Browse files
author
Marius Cramer
committed
- ported some patches
1 parent d5f2d5f commit f3bd605

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

interface/web/sites/templates/web_vhost_domain_ssl.htm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ <h1><tmpl_var name="list_head_txt"></h1>
9191

9292
$('#reset_data').click(function(){
9393
$('#ssl_organisation').add('#ssl_locality').add('#ssl_state').add('#ssl_organisation_unit').val('');
94-
$('#ssl_country').val($("#ssl_country option:first").val());
94+
$('#ssl_country').val($("#ssl_country option:first").val()).trigger('change');
9595
});
9696
$('#load_data').click(function(){
9797
loadClientData();
@@ -104,7 +104,7 @@ <h1><tmpl_var name="list_head_txt"></h1>
104104
jQuery.getJSON('sites/ajax_get_json.php'+ '?' + Math.round(new Date().getTime()), {'web_id': web_id, 'type': "getclientssldata"}, function(data) {
105105
$('#ssl_organisation').val(data['company_name']);
106106
$('#ssl_locality').val(data['city']);
107-
$('#ssl_country').val(data['country']);
107+
$('#ssl_country').val(data['country']).trigger('change');
108108
$('#ssl_state').val(data['state']);
109109
$('#ssl_organisation_unit').val('IT');
110110
});

0 commit comments

Comments
 (0)