1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-07 06:55:25 +02:00

Fix logout when cancelling a confirmation with URL based sid.

git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@2568 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2002-05-12 01:36:08 +00:00
parent 5e53c2aab0
commit 81cee70298

View File

@ -68,6 +68,15 @@ else
$folder = 'inbox'; $folder = 'inbox';
} }
//
// Start session management
//
$userdata = session_pagestart($user_ip, PAGE_PRIVMSGS);
init_userprefs($userdata);
//
// End session management
//
// //
// Cancel // Cancel
// //
@ -78,15 +87,6 @@ if ( $cancel )
exit; exit;
} }
//
// Start session management
//
$userdata = session_pagestart($user_ip, PAGE_PRIVMSGS);
init_userprefs($userdata);
//
// End session management
//
// //
// Var definitions // Var definitions
// //