package Apache::Error; use strict; use Apache::Constants qw(:common); sub handler { my $r = Apache->request; my $p = $r->prev; $r->status(OK); $r->content_type("text/html"); $r->send_http_header; $r->print("
\n");

  $r->print($r->path_info, "\n");
  $r->print($p->notes("error-notes"), "\n");

  $r->print("
\n"); return OK; } 1;