Re: Apache::Cooke reserved chars

2001-12-18 Thread darren chamberlain
[EMAIL PROTECTED] [EMAIL PROTECTED] said something to this effect on 12/17/2001: I'm recording a url at the beginning of an app to restore the entrance url: sub set_referer { my $self = shift; if ($self-{R}) { require Apache::Cookie;

Re: Apache::Cooke reserved chars

2001-12-18 Thread dbohling
darren chamberlain wrote: [EMAIL PROTECTED] [EMAIL PROTECTED] said something to this effect on 12/17/2001: I'm recording a url at the beginning of an app to restore the entrance url: sub set_referer { my $self = shift; if ($self-{R}) { require Apache::Cookie;

Re: Apache::Cooke reserved chars

2001-12-18 Thread darren chamberlain
[EMAIL PROTECTED] [EMAIL PROTECTED] said something to this effect on 12/18/2001: Use escape_uri and unescape_uri, or some other pair of reversable functions. For example, store it as: Tried this and it appears that Apache::Util escapes the same characters that Apache::Cookie does when it

Re: Apache::Cooke reserved chars

2001-12-18 Thread dbohling
darren chamberlain wrote: [EMAIL PROTECTED] [EMAIL PROTECTED] said something to this effect on 12/18/2001: Use escape_uri and unescape_uri, or some other pair of reversable functions. For example, store it as: Tried this and it appears that Apache::Util escapes the same characters that