koha-cvs
[Top][All Lists]
Advanced

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

[Koha-cvs] CVS: koha deletemem.pl,1.6,1.7


From: Andrew Arensburger
Subject: [Koha-cvs] CVS: koha deletemem.pl,1.6,1.7
Date: Sun, 13 Oct 2002 04:32:16 -0700

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

Modified Files:
        deletemem.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: deletemem.pl
===================================================================
RCS file: /cvsroot/koha/koha/deletemem.pl,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** deletemem.pl        13 Oct 2002 07:31:47 -0000      1.6
--- deletemem.pl        13 Oct 2002 11:32:14 -0000      1.7
***************
*** 84,88 ****
    $query="Insert into deletedborrowers values (";
    foreach my $temp (@data){
!     $query=$query."'$temp',";         # FIXME - .=
    }
    $query=~ s/\,$/\)/;
--- 84,88 ----
    $query="Insert into deletedborrowers values (";
    foreach my $temp (@data){
!     $query .= "'$temp',";
    }
    $query=~ s/\,$/\)/;




reply via email to

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