koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Andrew Arensburger
Subject: [Koha-cvs] CVS: koha/C4 Maintainance.pm,1.10,1.11
Date: Sun, 13 Oct 2002 04:35:19 -0700

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/\,$/\)/;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]