Fix for bug 920. The problem was that getMARCnotes had the variable set to be the...
authorjoshferraro <joshferraro>
Tue, 22 Feb 2005 22:38:21 +0000 (22:38 +0000)
committerjoshferraro <joshferraro>
Tue, 22 Feb 2005 22:38:21 +0000 (22:38 +0000)
loop name.

C4/SearchMarc.pm

index 5f8d71e..18ea6b3 100644 (file)
@@ -513,7 +513,7 @@ sub getMARCnotes {
                        $value=$value . "  ";
                }
                if ($thistag ne $tag && $note ne "") {
-                       $marcnote = {MARCNOTES => $note,};
+                       $marcnote = {marcnote => $note,};
                        push @marcnotes, $marcnote;
                        $note=$value;
                        $tag=$thistag;
@@ -524,7 +524,7 @@ sub getMARCnotes {
        }
 
        if ($note) {
-               $marcnote = {MARCNOTES => $note};
+               $marcnote = {marcnote => $note};
                push @marcnotes, $marcnote;   #load last tag into array
        }