[Koha-cvs] CVS: koha/C4 Maintainance.pm,1.10,1.11

Andrew Arensburger arensb at users.sourceforge.net
Sun Oct 13 13:35:19 CEST 2002


Update of /cvsroot/koha/koha/C4
In directory usw-pr-cvs1:/tmp/cvs-serv4897

Modified Files:
	Maintainance.pm 
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: Maintainance.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/Maintainance.pm,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** Maintainance.pm	13 Oct 2002 06:04:55 -0000	1.10
--- Maintainance.pm	13 Oct 2002 11:35:17 -0000	1.11
***************
*** 197,201 ****
      foreach my $temp (@data){
        $temp=~ s/\'/\\\'/g;
!       $query=$query."'$temp',";		# FIXME - .=
      }
      $query=~ s/\,$/\)/;
--- 197,201 ----
      foreach my $temp (@data){
        $temp=~ s/\'/\\\'/g;
!       $query .= "'$temp',";
      }
      $query=~ s/\,$/\)/;





More information about the Koha-cvs mailing list