bug #1414628, session.save_handler not set to files
This commit is contained in:
@@ -13,6 +13,8 @@ $Source$
|
|||||||
* lang/norwegian: Update, thanks to Sven-Erik Andersen
|
* lang/norwegian: Update, thanks to Sven-Erik Andersen
|
||||||
* db_details_structure.php: bug #1396998, notice for view row count
|
* db_details_structure.php: bug #1396998, notice for view row count
|
||||||
in table list
|
in table list
|
||||||
|
* libraries/session.inc.php: bug #1414628, session.save_handler might
|
||||||
|
be set to something different than "files". Thanks to Nicola Asuni
|
||||||
|
|
||||||
2006-01-28 Marc Delisle <lem9@users.sourceforge.net>
|
2006-01-28 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/common.lib.php: bug #1396998, avoid displaying exact row
|
* libraries/common.lib.php: bug #1396998, avoid displaying exact row
|
||||||
|
@@ -67,6 +67,11 @@ if (version_compare( PHP_VERSION, '5.0.0', 'ge')
|
|||||||
// start the session
|
// start the session
|
||||||
// on some servers (for example, sourceforge.net), we get a permission error
|
// on some servers (for example, sourceforge.net), we get a permission error
|
||||||
// on the session data directory, so I add some "@"
|
// on the session data directory, so I add some "@"
|
||||||
|
|
||||||
|
// [2006-01-25] Nicola Asuni - www.tecnick.com: maybe the PHP directive
|
||||||
|
// session.save_handler is set to another value like "user"
|
||||||
|
ini_set("session.save_handler", "files");
|
||||||
|
|
||||||
@session_name('phpMyAdmin');
|
@session_name('phpMyAdmin');
|
||||||
@session_start();
|
@session_start();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user