Subject: | Apache::unescape_url undefined |
We just installed Apache 2.0.49/modperl 1.99_13. Apache::AuthCookie was working fine under modperl 1.99_11, however, after the upgrade, we got the following error:
Undefined subroutine &Apache::Util::unescape_url called at /www/htdocs/cgi-bin/lib/modperl/Apache/AuthCookie.pm line 149
The following change fixed the problem:
149c149
Show quoted text
> my %args = map { Apache::unescape_url($_) }
---
< my %args = map { Apache::URI::unescape_url($_) }