@@ -, +, @@ of matches --- C4/ImportBatch.pm | 2 +- .../intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/C4/ImportBatch.pm +++ a/C4/ImportBatch.pm @@ -1485,7 +1485,7 @@ sub GetImportRecordMatches { JOIN import_record_matches USING (import_record_id) LEFT JOIN biblio ON (biblionumber = candidate_match_id) WHERE import_record_id = ? - ORDER BY score DESC, chosen DESC, biblionumber DESC"); + ORDER BY score DESC, biblionumber DESC"); $sth->bind_param(1, $import_record_id); my $results = []; $sth->execute(); --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt @@ -582,8 +582,8 @@ ); $('td:eq(5) ul', nRow).append('
  • ' + _("View") + '
  • '); + checked = ""; }); - checked = ""; if( !any_checked ){ checked = 'checked="checked"'; } $('td:eq(4) ul', nRow).prepend('
  • '); $('td:eq(5) ul', nRow).prepend('
  •  
  • '); --