RE: Apache::Request problem (possible bug)

2001-04-06 Thread Geoffrey Young
this was fixed in cvs this past month. check out the archive of the apreq-dev list (if there is one somewhere) to see the details. basically it was because using param() to set a variable was calling Apache::Table-set, which stringifies its arguments. Now it calls Apache::Table-add and does

Re: Apache::Request problem (possible bug)

2001-04-06 Thread Kee Hinckley
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 At 1:07 AM +1000 4/7/01, Cees Hek wrote: $r-param('newlist' = [qw(one two three)]); my @newlist = $r-param('newlist'); my @newlist = @{$r-param('newlist')}; What you stored was not an array, but a reference to an array. - --