Re: return value for response handler

2008-06-12 Thread John ORourke
Geoffrey Young wrote: I wanted to redirect the user's browser, and in my response handler I was setting $r->status(302) but returning Apache2::Const::OK instead of the correct Apache2::Const::DONE. return Apache2::Const::REDIRECT Unfortunately I can't easily do that here - I have plug-in modul

Re: return value for response handler

2008-06-12 Thread Geoffrey Young
Torsten Foertsch wrote: On Tue 10 Jun 2008, John ORourke wrote: I had a bug with an interesting side effect which I want to understand. I wanted to redirect the user's browser, and in my response handler I was setting $r->status(302) but returning Apache2::Const::OK instead of the correct Apa

Re: return value for response handler

2008-06-10 Thread Torsten Foertsch
On Tue 10 Jun 2008, John ORourke wrote: > I had a bug with an interesting side effect which I want to understand. > > I wanted to redirect the user's browser, and in my response handler I > was setting $r->status(302) but returning Apache2::Const::OK instead of > the correct Apache2::Const::DONE. >