possible patch for Apache::AuthCookie

1999-12-16 Thread Robert Locke
Hi all, Currently, Apache::AuthCookie uses: $r-err_header_out("Set-Cookie" = ... to set its cookie. However, if you're authentication or authorization routines also sets a cookie, then it will get overwritten by the above code. Below is a proposed patch to AuthCookie.pm that I believe

Re: possible patch for Apache::AuthCookie

1999-12-16 Thread Ken Williams
[EMAIL PROTECTED] (Robert Locke) wrote: Below is a proposed patch to AuthCookie.pm that I believe solves this problem. Basically, I replaced each occurrence of the above with: $r-err_headers_out-add("Set-Cookie" = ... I think you've got the patch backwards. PS. Who's the current maintainer