Re: 200 Response on die

2007-06-30 Thread Christian Hoermann
Hello Clint, Yes, it is intended behaviour. thank you for clarifying this. What I do is keep all of my content in a single variable, and once pretty much everything that could die has finished, I $r->print($content) as the last action by my handler. All the previous code is wrapped in an

200 Response on die

2007-06-29 Thread Christian Hoermann
Hello everyone, I'm wondering whether the following is intended behavior. Calling die inside the mod_perl handler doesn't clear the part of the response generated to that point. In other words, the HTML error document is simply appended to anything that has been sent to $r->print() previously and