diff --git a/ChangeLog b/ChangeLog index e825615e9b..5e23f49e8f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,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? */