diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 9eefc18c..826d0cbd 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -324,9 +324,12 @@ function settime () { } /* Find Operators Name */ - $.get('logbook/callsign_name/' + $(this).val(), function(result) { - $('#name').val(result); - }); + if($('#name').val() == "") { + $.get('logbook/callsign_name/' + $(this).val(), function(result) { + $('#name').val(result); + }); + } + } }); });