Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2014-04-30 16:30:11 +0400
committerMarc Delisle <marc@infomarc.info>2014-04-30 16:30:11 +0400
commit8d43cedeff8db86f701ef7427c408f4c8d9a5cc2 (patch)
treeac1bf7d4ff3b4a491af9e688ba163b27eb6baa1b /examples
parent662d20f3a8dacdd670cbe6b4708de96c5ec04d6d (diff)
bug #4364 examples/signon.php does not support the SessionSavePath directive
Signed-off-by: Marc Delisle <marc@infomarc.info>
Diffstat (limited to 'examples')
-rw-r--r--examples/signon.php2
1 files changed, 2 insertions, 0 deletions
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? */