Re: Apache::Cookie bug with value => undef

2001-10-08 Thread Dave Rolsky
On Mon, 8 Oct 2001, Ged Haywood wrote: > Have you tried doing > > Apache::Cookie->new( $r, >-name => 'foo', >-value => { wont_break => '1', not_at_all_borked => '' } )->bake; > > instead? I can hardly control the order in which values are written out to th

Re: Apache::Cookie bug with value => undef

2001-10-08 Thread Ged Haywood
Hi Dave, On Mon, 8 Oct 2001, Dave Rolsky wrote: > Apache::Cookie->new( $r, >-name => 'foo', >-value => { will_break => '', completely_borked => 1 } )->bake; Have you tried doing Apache::Cookie->new( $r, -name => 'foo',

Apache::Cookie bug with value => undef

2001-10-08 Thread Dave Rolsky
If I do this: Apache::Cookie->new( $r, -name => 'foo', -value => { will_break => '', completely_borked => 1 } )->bake; and then I later try to read the cookie in and do this: my %c = Apache::Cookie->fetch; my %cookie = $c{foo}->value; print $cookie{wil