diff options
author | nikrou <nikrou@piwigo.org> | 2006-02-03 16:19:56 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2006-02-03 16:19:56 +0000 |
commit | dd8d5717617dee3a25213f8c6686d2bd02f28329 (patch) | |
tree | 95d40c0029cb43c06381358b14b3cf7436dd38df /include/user.inc.php | |
parent | ea572da6884fdb711da084bcdcc931c4744af2a0 (diff) |
fixed problem of cookie session path
fixed problem of undefined variable conf in upgrade_feed.php
fixed problem of undefined index is_the_guest of tab variable user
git-svn-id: http://piwigo.org/svn/trunk@1023 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/user.inc.php')
-rw-r--r-- | include/user.inc.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/user.inc.php b/include/user.inc.php index 04adde9ac..ad58b3f92 100644 --- a/include/user.inc.php +++ b/include/user.inc.php @@ -32,6 +32,7 @@ if (isset($_COOKIE[session_name()])) if (isset($_SESSION['id'])) { $user['id'] = $_SESSION['id']; + $user['is_the_guest'] = false; } else { |