Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv29682/chat/lib
Modified Files:
db_sessions.lib.php3
Log Message:
Oups, I forgot to uncomment a line
Index: db_sessions.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/db_sessions.lib.php3,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** db_sessions.lib.php3 2001/04/14 17:51:47 1.7
--- db_sessions.lib.php3 2001/04/16 14:33:05 1.8
***************
*** 426,432 ****
else
{
! // $dbSessionDbLink->close();
header('Location: ' . $dbSessionInitUrl);
! return false;
}
}
--- 426,432 ----
else
{
! $dbSessionDbLink->close();
header('Location: ' . $dbSessionInitUrl);
! exit();
}
}
|