|
From: Benjamin C. <bc...@us...> - 2003-07-05 22:57:36
|
Update of /cvsroot/phpbt/phpbt
In directory sc8-pr-cvs1:/tmp/cvs-serv17381
Modified Files:
include.php
Log Message:
Fixes bug #764962 - Specify files as a session save handler just in case some php installations have user as the default handler
Index: include.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/include.php,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- include.php 18 Oct 2002 17:48:34 -0000 1.125
+++ include.php 5 Jul 2003 22:57:33 -0000 1.126
@@ -24,6 +24,7 @@
ini_set("magic_quotes_runtime", 0);
ini_set("magic_quotes_sybase", 0);
+@ini_set("session.save_handler", "files");
if (!@include('config.php')) {
header("Location: install.php");
|