append '/' on cookie path for now (may still need some refactoring)
This commit is contained in:
parent
5bf4928db8
commit
65c4cff01c
@ -178,7 +178,7 @@ function common_ensure_session()
|
|||||||
}
|
}
|
||||||
if (isset($id)) {
|
if (isset($id)) {
|
||||||
session_id($id);
|
session_id($id);
|
||||||
setcookie(session_name(), $id, 0, common_config('site', 'path'));
|
setcookie(session_name(), $id, 0, common_config('site', 'path') . '/');
|
||||||
}
|
}
|
||||||
@session_start();
|
@session_start();
|
||||||
if (!isset($_SESSION['started'])) {
|
if (!isset($_SESSION['started'])) {
|
||||||
|
Loading…
Reference in New Issue
Block a user