Barksdale, Ray wrote:
 set a timestamp in your sessions before untying.

That's for telling it that the session has changed by doing a first level write to the tied hash. This is only necessary when you are writing to the second level and not touching the first, e.g.

$session->{'user'}->{'favorite_color'} = 'mauve';

It doesn't need to be a timestamp either. Just doing this every time will work fine:

$session->{'touch'} = 1;

In any case, that doesn't seem to be the problem here.

- Perrin

Reply via email to