[Koha-cvs] CVS: koha/C4 SearchMarc.pm,1.36,1.37

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


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

Modified Files:
	SearchMarc.pm 
Log Message:
Fix for 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
retrieving revision 1.37
diff -C2 -r1.36 -r1.37
*** SearchMarc.pm	3 Jan 2005 10:48:36 -0000	1.36
--- SearchMarc.pm	22 Feb 2005 22:38:21 -0000	1.37
***************
*** 514,518 ****
  		}
  		if ($thistag ne $tag && $note ne "") {
! 		        $marcnote = {MARCNOTES => $note,};
  			push @marcnotes, $marcnote;
  			$note=$value;
--- 514,518 ----
  		}
  		if ($thistag ne $tag && $note ne "") {
! 		        $marcnote = {marcnote => $note,};
  			push @marcnotes, $marcnote;
  			$note=$value;
***************
*** 525,529 ****
  
  	if ($note) {
! 	        $marcnote = {MARCNOTES => $note};
  		push @marcnotes, $marcnote;   #load last tag into array
  	}
--- 525,529 ----
  
  	if ($note) {
! 	        $marcnote = {marcnote => $note};
  		push @marcnotes, $marcnote;   #load last tag into array
  	}





More information about the Koha-cvs mailing list