From 8d43cedeff8db86f701ef7427c408f4c8d9a5cc2 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 30 Apr 2014 08:30:11 -0400 Subject: [PATCH] bug #4364 examples/signon.php does not support the SessionSavePath directive Signed-off-by: Marc Delisle --- ChangeLog | 1 + examples/signon.php | 2 ++ 2 files changed, 3 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7ed213d8ef..71279ad916 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,7 @@ phpMyAdmin - ChangeLog - bug #4380 Cannot display table structure with enums containing special characters - bug #4381 Cannot remove the last remembered sorted column - bug Correctly fetch length of user and host fields in MySQL tables +- bug #4364 examples/signon.php does not support the SessionSavePath directive 4.2.0.0 (not yet released) + rfe #1403 Export only triggers diff --git a/examples/signon.php b/examples/signon.php index 57e989d315..8b2ab2e279 100644 --- a/examples/signon.php +++ b/examples/signon.php @@ -16,6 +16,8 @@ session_set_cookie_params(0, '/', '', 0); /* Create signon session */ $session_name = 'SignonSession'; session_name($session_name); +// Uncomment and change the following line to match your $cfg['SessionSavePath'] +//session_save_path('/foobar'); session_start(); /* Was data posted? */