[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-devel] re: [Koha] problem with cookie based authentication with ko
From: |
Tonnesen Steve |
Subject: |
[Koha-devel] re: [Koha] problem with cookie based authentication with koha-1.2.3 |
Date: |
Thu Feb 13 12:13:13 2003 |
On Thu, 13 Feb 2003 address@hidden wrote:
> Did anyone see or respond to following message a few days ago? I haven't seen
> a response and am seeing something similar with a windows install of
> koha-1.2.3 when in the Intranet module.
>
> Does anyone have an idea of what to check to resove this?
It's a bug in the Auth.pm module. It's assigning a new session cookie
immediately after the user has authenticated:
Line 176 in C4/Auth.pm reads:
$sessionID=int(rand()*100000).'-'.time();
and it should read:
$sessionID or $sessionID=int(rand()*10000).'-'.time();
Steve.