http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=1051 Summary: Mismatch between values for preferedRecordSyntax in db and the z3950 daemon Product: Koha Version: 2.2.0 Platform: PC Status: NEW Severity: normal Priority: P2 Component: z39.50 Server AssignedTo: jferraro@athenscounty.lib.oh.us ReportedBy: marilen.corciovei@nemesisit.ro QAContact: koha-bugs@nongnu.org The choices in z3950servers.tmpl are: <select name="syntax"> <option value="USMARC">USMARC</option> <option value="UNIMARC">UNIMARC</option> </select> The code in processz3950queue and found: eval { $conn->option(preferredRecordSyntax => Net::Z3950::RecordSyntax::USMARC);} if ($globalsyntax eq "MARC21"); eval { $conn->option(preferredRecordSyntax => Net::Z3950::RecordSyntax::UNIMARC);} if ($globalsyntax eq "UNIMARC"); In processz3950queue MARC21 should be changed to USMARC. ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact.