[Koha-cvs] CVS: koha/C4 SearchMarc.pm,1.36.2.1,1.36.2.2

Joshua Ferraro joshferraro at users.sourceforge.net
Tue Feb 22 23:32:03 CET 2005


Update of /cvsroot/koha/koha/C4
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9563

Modified Files:
      Tag: rel_2_2
	SearchMarc.pm 
Log Message:
Fixes bug 920: The problem was that getMARCnotes had the variable set to be the same as the loop name.


Index: SearchMarc.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/SearchMarc.pm,v
retrieving revision 1.36.2.1
retrieving revision 1.36.2.2
diff -C2 -r1.36.2.1 -r1.36.2.2
*** SearchMarc.pm	11 Jan 2005 15:10:49 -0000	1.36.2.1
--- SearchMarc.pm	22 Feb 2005 22:32:00 -0000	1.36.2.2
***************
*** 513,517 ****
  		}
  		if ($thistag ne $tag && $note ne "") {
! 		        $marcnote = {MARCNOTES => $note,};
  			push @marcnotes, $marcnote;
  			$note=$value;
--- 513,517 ----
  		}
  		if ($thistag ne $tag && $note ne "") {
! 		        $marcnote = {marcnote => $note,};
  			push @marcnotes, $marcnote;
  			$note=$value;
***************
*** 524,528 ****
  
  	if ($note) {
! 	        $marcnote = {MARCNOTES => $note};
  		push @marcnotes, $marcnote;   #load last tag into array
  	}
--- 524,528 ----
  
  	if ($note) {
! 	        $marcnote = {marcnote => $note};
  		push @marcnotes, $marcnote;   #load last tag into array
  	}





More information about the Koha-cvs mailing list