[Koha-bugs] [Bug 19313] New: Typo in UNIMARC field 130 plugin

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Sep 14 11:02:32 CEST 2017


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19313

            Bug ID: 19313
           Summary: Typo in UNIMARC field 130 plugin
 Change sponsored?: ---
           Product: Koha
           Version: master
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5 - low
         Component: Cataloging
          Assignee: koha-bugs at lists.koha-community.org
          Reporter: dubyk at ukr.net
        QA Contact: testopia at bugs.koha-community.org
                CC: m.de.rooy at rijksmuseum.nl

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_130.tt;h=6b0758229ab680868bee17f63fb1f0701d3bd638;hb=HEAD#l245

https://books.google.com.ua/books?id=I9rPDkF0_ZQC&pg=PA195&lpg=PA195&dq=unimarc+130+mixed+emulsion&source=bl&ots=eE7pUi4Arn&sig=bN3mM9Br4QasDN6bnZ8Ph2C_EyI&hl=uk&sa=X&ved=0ahUKEwjIveiup6TWAhUzSJoKHbq7C-sQ6AEILjAB#v=onepage&q=unimarc%20130%20mixed%20emulsion&f=false

Exists:
 245                         [% END %]
 246                         [% IF ( f7d ) %]
 247                                 <option value="d"
selected="selected">unknown</option>
 248                         [% ELSE %]
 249                                 <option value="d">unknown</option>
 250                         [% END %]
 251                         [% IF ( f7u ) %]
 252                                 <option value="u"
selected="selected">mixed emulsion</option>
 253                         [% ELSE %]
 254                                 <option value="u">mixed emulsion</option>
 255                         [% END %]

Must be:
 245                         [% END %]
 246                         [% IF ( f7u ) %]
 247                                 <option value="u"
selected="selected">unknown</option>
 248                         [% ELSE %]
 249                                 <option value="u">unknown</option>
 250                         [% END %]
 251                         [% IF ( f7v ) %]
 252                                 <option value="v"
selected="selected">mixed emulsion</option>
 253                         [% ELSE %]
 254                                 <option value="v">mixed emulsion</option>
 255                         [% END %]

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.


More information about the Koha-bugs mailing list