clayton cottingham <[EMAIL PROTECTED]> on Mar 4, 2002:

> every time i use
> the $r->status('OK');

"OK" in this context is not a string, but a constant that is defined in
Apache::Constants. Modify your code like this:

  use Apache::Constants qw(:common);
  ...
  $r->status(OK);   # No quotes, it's a constant


HTH, Hans

Reply via email to