stas 2003/11/15 13:57:28
Modified: lib/Apache Status.pm
Log:
always return status from the handler
Revision Changes Path
1.15 +2 -1 modperl-2.0/lib/Apache/Status.pm
Index: Status.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/lib/Apache/Status.pm,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -u -r1.14 -r1.15
--- Status.pm 15 Nov 2003 21:36:42 -0000 1.14
+++ Status.pm 15 Nov 2003 21:57:28 -0000 1.15
@@ -120,7 +120,8 @@
no strict 'refs';
if ($qs =~ s/^(noh_\w+).*/$1/) {
- return &{$qs}($r, $newQ->($r));
+ &{$qs}($r, $newQ->($r));
+ return Apache::OK;
}
header($r);