> 1. I get many many instances of:
>
> Use of uninitialized value in split at
> /usr/local/libdata/perl5/site_perl/Apache
> /ASP/Response.pm line 938 during global destruction.
...
> Hang on. No, wait. There is a nested paren up there... WTF does that mean
in
> per WRT $1 etc. ??? I will go off and read 'man perlre' I think.
The patch that *appears* to work is:
--- lib/Apache/ASP/Response.pm.orig Tue Nov 5 21:52:23 2002
+++ lib/Apache/ASP/Response.pm Tue Dec 10 11:58:38 2002
@@ -925,10 +925,10 @@ sub SessionQueryParseURL {
)
{
my($query, $new_url, $frag);
- if($rel_url =~ /^([^\?]+)(\?([^\#]*))?(\#.*)?$/) {
+ if($rel_url =~ /^([^\?]+)\?([^\#]*)(\#.*)?$/) {
$new_url = $1;
- $query = $3;
- $frag = $4;
+ $query = $2;
+ $frag = $3;
} else {
$new_url = $rel_url;
$query = '';
I tested with cookies enabled and blocked. No more errors and URLs look as
expected.
Peter
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]