fix: get v6 address from v6 input field

This commit is contained in:
Thomas Waldmann 2013-10-27 09:54:16 +01:00
parent 018f680a3f
commit 26e819e013

View File

@ -55,7 +55,7 @@
}
update_host_v6 = function(host) {
$('#update_result_v6').text('updating...');
$.get( "{% url 'nic_update_authorized' %}", { myip: $('#myipv4').val(), hostname: host } )
$.get( "{% url 'nic_update_authorized' %}", { myip: $('#myipv6').val(), hostname: host } )
.done(function( data ) {
$('#update_result_v6').text(data);
}).fail(function( data ) {