[Koha-cvs] CVS: koha/opac opac-logout.pl,1.4,1.5

Paul POULAIN tipaul at users.sourceforge.net
Fri Dec 20 14:59:10 CET 2002


Update of /cvsroot/koha/koha/opac
In directory sc8-pr-cvs1:/tmp/cvs-serv5426/opac

Modified Files:
	opac-logout.pl 
Log Message:
small bugfix to make logout work

Index: opac-logout.pl
===================================================================
RCS file: /cvsroot/koha/koha/opac/opac-logout.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** opac-logout.pl	19 Dec 2002 11:04:15 -0000	1.4
--- opac-logout.pl	20 Dec 2002 13:59:07 -0000	1.5
***************
*** 59,63 ****
  }
  
! $dbh->do("delete from sessions where sessionID=?", $sessionID);
  open L, ">>/tmp/sessionlog";
  my $time=localtime(time());
--- 59,64 ----
  }
  
! my $sth=$dbh->prepare("delete from sessions where sessionID=?");
! $sth->execute($sessionID);
  open L, ">>/tmp/sessionlog";
  my $time=localtime(time());





More information about the Koha-cvs mailing list