1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-28 02:01:52 +02:00

Fix guest/bot session problems with apache authentication plugin (Bug #41085)

git-svn-id: file:///svn/phpbb/trunk@9307 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2009-01-27 09:25:00 +00:00
parent 90ad76e948
commit 7aced345c5

View File

@ -225,6 +225,18 @@ function user_row_apache($username, $password)
*/
function validate_session_apache(&$user)
{
// We only need to check authenticated users. For anonymous user as well as bots the session of course did not expire.
if ($user['user_id'] == ANONYMOUS)
{
return true;
}
// Checking for a bot is a bit mroe complicated... but we are able to check this with the user type (anonymous has the same as bots)
if ($user['user_type'] == USER_IGNORE)
{
return true;
}
if (!isset($_SERVER['PHP_AUTH_USER']))
{
return false;