[Koha-bugs] [Bug 9968] New: Error when a search is done with Standard number option

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Apr 2 12:01:06 CEST 2013


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9968

            Bug ID: 9968
           Summary: Error when a search is done with Standard number
                    option
    Classification: Unclassified
 Change sponsored?: ---
           Product: Koha
           Version: master
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P5 - low
         Component: Searching
          Assignee: gmcharlt at gmail.com
          Reporter: rus.silvia at masmedios.com

In file "etc\zebradb\ccl.properties" the label  "Local-number" is being
abbreviated by "sn", it seems an error because "sn" should be the abbreviation
of "standard number".

The label of standard number is "Identifier-standard" abbreviated by "ident".

The standard numbers sholud be the 020, 022 and 024 MARC fields and not the in
001 and 035 fields.

For this reason searching in Advanced Search is wrong in "search-indexes.inc"
it find the following code:

[% IF (numbersphr) %]
    <option value="sn,phr">Standard number</option>
[% ELSE %]
    <option value="sn">Standard number</option>
[% END %]

Should be:

[% IF (numbersphr) %]
    <option value="ident,phr">Standard number</option>
[% ELSE %]
    <option value="ident">Standard number</option>
[% END %]

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


More information about the Koha-bugs mailing list