diff --git a/application/views/qso/index.php b/application/views/qso/index.php index bd288916..32a0b0c1 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -274,10 +274,12 @@ $(document).ready(function(){ $('#country').val(result); }); - $.get('logbook/callsign_qra/' + $(this).val(), function(result) { - $('#locator').val(result); + if($('#locator').val() == "") { + $.get('logbook/callsign_qra/' + $(this).val(), function(result) { + $('#locator').val(result); }); - + } + $.get('logbook/callsign_name/' + $(this).val(), function(result) { $('#name').val(result); });