diff --git a/application/views/qrz/export.php b/application/views/qrz/export.php
index 1f51b4c8..95a89dd2 100644
--- a/application/views/qrz/export.php
+++ b/application/views/qrz/export.php
@@ -45,7 +45,7 @@
echo '
' . $station->modcount . ' | ';
echo '' . $station->notcount . ' | ';
echo '' . $station->totcount . ' | ';
- echo ' | ';
+ echo ' | ';
echo '';
}
echo '';
diff --git a/assets/js/sections/qrzlogbook.js b/assets/js/sections/qrzlogbook.js
index 7d379ed5..d8a0f7aa 100644
--- a/assets/js/sections/qrzlogbook.js
+++ b/assets/js/sections/qrzlogbook.js
@@ -17,16 +17,16 @@ function ExportQrz(station_id) {
if ($(".errormessages").length > 0) {
$(".errormessages").remove();
}
- $(".ld-ext-right").addClass('running');
- $(".ld-ext-right").prop('disabled', true);
+ $(".ld-ext-right-"+station_id).addClass('running');
+ $(".ld-ext-right-"+station_id).prop('disabled', true);
$.ajax({
url: base_url + 'index.php/qrz/upload_station',
type: 'post',
data: {'station_id': station_id},
success: function (data) {
- $(".ld-ext-right").removeClass('running');
- $(".ld-ext-right").prop('disabled', false);
+ $(".ld-ext-right-"+station_id).removeClass('running');
+ $(".ld-ext-right-"+station_id).prop('disabled', false);
if (data.status == 'OK') {
$.each(data.info, function(index, value){
$('#modcount'+value.station_id).html(value.modcount);