[Bug 14742] New: 082 field corrupt in FA Framework in new installs
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14742 Bug ID: 14742 Summary: 082 field corrupt in FA Framework in new installs Change sponsored?: --- Product: Koha Version: 3.20 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Cataloging Assignee: gmcharlt@gmail.com Reporter: david.roberts@ptfs-europe.com QA Contact: testopia@bugs.koha-community.org CC: m.de.rooy@rijksmuseum.nl In a new install of Koha, the 082 field doesn't display in the FA framework, yet when you try adding a catalogue record using that framework the 082 displays (without a field description). This problem is caused by the following row in the marc_tag_structure table: | 082 | DEWEY DECIMAL CLASSIFICATION NUMBER | DEWEY DECIMAL CLASSIFICATION NUMBER | 1 | 0 | NULL | | To fix it, you need to use the following SQL: update marc_tag_structure set frameworkcode = 'FA' where tagfield = '082 ' and frameworkcode = ''; This alters the row to the following: | 082 | DEWEY DECIMAL CLASSIFICATION NUMBER | DEWEY DECIMAL CLASSIFICATION NUMBER | 1 | 0 | NULL | FA | -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org