From 26e819e013e6c0af47b214fa14982167dddefbbd Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 27 Oct 2013 09:54:16 +0100 Subject: [PATCH] fix: get v6 address from v6 input field --- nsupdate/main/templates/main/host.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nsupdate/main/templates/main/host.html b/nsupdate/main/templates/main/host.html index 36f2bbd..c51c5fe 100644 --- a/nsupdate/main/templates/main/host.html +++ b/nsupdate/main/templates/main/host.html @@ -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 ) {