|
From: <jgr...@us...> - 2003-10-30 14:42:37
|
Update of /cvsroot/popfile/engine/UI
In directory sc8-pr-cvs1:/tmp/cvs-serv1874/UI
Modified Files:
HTML.pm
Log Message:
Fix bug 831472 jump_to_message was broken if there was a password; added test for this case
Index: HTML.pm
===================================================================
RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v
retrieving revision 1.219
retrieving revision 1.220
diff -C2 -d -r1.219 -r1.220
*** HTML.pm 20 Oct 2003 21:38:42 -0000 1.219
--- HTML.pm 30 Oct 2003 14:42:33 -0000 1.220
***************
*** 463,467 ****
# If we are dealing with an array of values (see parse_form_
# for details) then we need to unpack it into separate entries),
- # we ignore non-array values since all values have an array equivalent
if ( $k =~ /^(.+)_array$/ ) {
--- 463,466 ----
***************
*** 471,474 ****
--- 470,475 ----
$redirect_url .= "$field=$v&"
}
+ } else {
+ $redirect_url .= "$k=$self->{form_}{$k}&"
}
}
***************
*** 477,481 ****
$redirect_url =~ s/&$//;
! password_page( $self, $client, 0, $redirect_url );
return 1;
--- 478,482 ----
$redirect_url =~ s/&$//;
! $self->password_page( $client, 0, $redirect_url );
return 1;
|