Bug 10715 - MARC21 007 Plugin Editor doesn't load position 01
authorDavid Cook <dcook@prosentient.com.au>
Tue, 13 Aug 2013 02:16:28 +0000 (12:16 +1000)
committerGalen Charlton <gmc@esilibrary.com>
Fri, 16 Aug 2013 14:13:59 +0000 (14:13 +0000)
This patch changes the MARC21 007 plugin editor so that it uses
1 character instead of 4 characters for position 01.

TEST PLAN:

1) Create new record/edit an existing record
2) Using the tag editor for the 007 field, choose "Videorecording"
3) Click OK
4) Change the second character in the 007 from "c" to "d"
5) Open the tag editor again
6) Note that position 01 will still say "c - Videocartridge" rather
than "d - Videodisc".
7) Exit tag editor

8) Apply patch

9) Reload the page (Shift + Refresh is always useful)
10) Open the tag editor again
11) Note that position 01 will now say "d - Videodisc"

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
cataloguing/value_builder/marc21_field_007.pl

index c852fa0..74e559d 100755 (executable)
@@ -82,7 +82,7 @@ my ($template, $loggedinuser, $cookie)
                             });
        $result = "ta" unless $result;
        my $f0 = substr($result,0,1);
-       my $f1 = substr($result,1,4);
+     my $f1 = substr($result,1,1);
 #added new parameters to allow for all material types
        my $f2 = substr($result,2,1);
        my $f3 = substr($result,3,1);