diff options
author | nikrou <nikrou@piwigo.org> | 2006-07-28 09:34:27 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2006-07-28 09:34:27 +0000 |
commit | 1873dbd0623cf61b95dedcbb0ee31bec416efd46 (patch) | |
tree | c74579a0827cab9d59414845edced3d66577fb44 /index.php | |
parent | f6c2f2b1b11f6369beaf88b53efbb8afa64e2ca7 (diff) |
Fix bug 451: improvement
small problem with reconnexion after session timeout
add auto-login function
all staff for session (connexion, auto-login and logout)
is now in include/user.inc.php
git-svn-id: http://piwigo.org/svn/trunk@1511 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | index.php | 18 |
1 files changed, 0 insertions, 18 deletions
@@ -35,24 +35,6 @@ include(PHPWG_ROOT_PATH.'include/section_init.inc.php'); // +-----------------------------------------------------------------------+ check_status(ACCESS_GUEST); -//---------------------------------------------------------------------- logout -if ( isset( $_GET['act'] ) - and $_GET['act'] == 'logout' - and isset( $_COOKIE[session_name()] ) ) -{ - // cookie deletion if exists - $_SESSION = array(); - session_unset(); - session_destroy(); - setcookie(session_name(),'',0, - ini_get('session.cookie_path'), ini_get('session.cookie_domain') ); - redirect( make_index_url() ); -} -if ($user['is_the_guest'] and !$conf['guest_access']) -{ - redirect (get_root_url().'identification.php'); -} - //---------------------------------------------- change of image display order if (isset($_GET['image_order'])) { |