Small typo: http://git.koha-community.org/gitweb/?p=koha.git;a=blob;f=koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_140.tt;h=585f1a00f52d13ddf7ca32cae9175985bcdf58a5;hb=HEAD#l1499 https://books.google.com.ua/books?id=I9rPDkF0_ZQC&pg=PA210&lpg=PA210&dq=unimarc+140+travelogue&source=bl&ots=eE7pVh0wqp&sig=LvSq6xS3YC8yN3SfVxMZisBVX-A&hl=uk&sa=X&ved=0ahUKEwjr36Cc5qbWAhUhEpoKHfLyB-wQ6AEIJjAA#v=onepage&q=unimarc%20140%20travelogue&f=false Exist: 1499 [% IF ( f14lh ) %] 1500 <option value="lh" selected="selected">erotica</option> 1501 [% ELSE %] 1502 <option value="lh">erotica</option> 1503 [% END %] 1504 [% IF ( f14li ) %] 1505 <option value="li" selected="selected">erotica</option> 1506 [% ELSE %] 1507 <option value="li">erotica</option> 1508 [% END %] Must be: 1499 [% IF ( f14lh ) %] 1500 <option value="lh" selected="selected">erotica</option> 1501 [% ELSE %] 1502 <option value="lh">erotica</option> 1503 [% END %] 1504 [% IF ( f14li ) %] 1505 <option value="li" selected="selected">mystic literature</option> 1506 [% ELSE %] 1507 <option value="li">mystic literature</option> 1508 [% END %]
Another reference: https://archive.ifla.org/VI/8/unimarc-concise-bibliographic-format-2008.pdf
Created attachment 110057 [details] [review] Bug 19322: Typo in UNIMARC field 140 plugin This patch corrects some incorrect information in the UNIMARC plugin for tag 140. Literature code "li" should be "mystic literature." To test you do not need a UNIMARC installation. Apply the patch and go to Administration -> MARC frameworks and Actions -> MARC structure for one of your frameworks. - Edit subfields for a tag, e.g. 245. This is only for testing purposes so it doesn't have to be any particular tag. - Change the options for one of the subfields, e.g. $a. Under "Other options (choose one), set "Plugin" to "unimarc_field_140.pl" - Save changes. - Open a bibliographic record for editing using the framework you modified. - Click the plugin link next to the subfield you modified, e.c. 245$a. - This should trigger the "UNIMARC field 140 builder" popup window. - Find "Literature" and select "Mystic literature." Save. - In the MARC editor, the field you modified should contain the value "li" at position 17-18.
Created attachment 110232 [details] [review] Bug 19322: Typo in UNIMARC field 140 plugin This patch corrects some incorrect information in the UNIMARC plugin for tag 140. Literature code "li" should be "mystic literature." To test you do not need a UNIMARC installation. Apply the patch and go to Administration -> MARC frameworks and Actions -> MARC structure for one of your frameworks. - Edit subfields for a tag, e.g. 245. This is only for testing purposes so it doesn't have to be any particular tag. - Change the options for one of the subfields, e.g. $a. Under "Other options (choose one), set "Plugin" to "unimarc_field_140.pl" - Save changes. - Open a bibliographic record for editing using the framework you modified. - Click the plugin link next to the subfield you modified, e.c. 245$a. - This should trigger the "UNIMARC field 140 builder" popup window. - Find "Literature" and select "Mystic literature." Save. - In the MARC editor, the field you modified should contain the value "li" at position 17-18. Signed-off-by: David Nind <david@davidnind.com>
Created attachment 110290 [details] [review] Bug 19322: Typo in UNIMARC field 140 plugin This patch corrects some incorrect information in the UNIMARC plugin for tag 140. Literature code "li" should be "mystic literature." To test you do not need a UNIMARC installation. Apply the patch and go to Administration -> MARC frameworks and Actions -> MARC structure for one of your frameworks. - Edit subfields for a tag, e.g. 245. This is only for testing purposes so it doesn't have to be any particular tag. - Change the options for one of the subfields, e.g. $a. Under "Other options (choose one), set "Plugin" to "unimarc_field_140.pl" - Save changes. - Open a bibliographic record for editing using the framework you modified. - Click the plugin link next to the subfield you modified, e.c. 245$a. - This should trigger the "UNIMARC field 140 builder" popup window. - Find "Literature" and select "Mystic literature." Save. - In the MARC editor, the field you modified should contain the value "li" at position 17-18. Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Pushed to master for 20.11, thanks to everybody involved!
backported to 20.05.x for 20.05.05
enhancement, not backported to 19.11.x