[Koha-cvs] CVS: koha/acqui finishreceive.pl,1.9,1.10

Andrew Arensburger arensb at users.sourceforge.net
Sun Oct 13 13:37:55 CEST 2002


Update of /cvsroot/koha/koha/acqui
In directory usw-pr-cvs1:/tmp/cvs-serv5372

Modified Files:
	finishreceive.pl 
Log Message:
Replaced expressions of the form "$x = $x <op> $y" with "$x <op>= $y".
Thus, $x = $x+2 becomes $x += 2, and so forth.


Index: finishreceive.pl
===================================================================
RCS file: /cvsroot/koha/koha/acqui/finishreceive.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** finishreceive.pl	13 Oct 2002 06:30:01 -0000	1.9
--- finishreceive.pl	13 Oct 2002 11:37:53 -0000	1.10
***************
*** 67,71 ****
  
  if ($quantrec != 0){
!   $cost=$cost / $quantrec;		# FIXME - /=
  }
  
--- 67,71 ----
  
  if ($quantrec != 0){
!   $cost /= $quantrec;
  }
  





More information about the Koha-cvs mailing list