You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by pg...@apache.org on 2006/08/25 10:06:23 UTC

svn commit: r436708 - /perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm

Author: pgollucci
Date: Fri Aug 25 01:06:23 2006
New Revision: 436708

URL: http://svn.apache.org/viewvc?rev=436708&view=rev
Log:
match indentation of A2::SL


Modified:
    perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm

Modified: perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm
URL: http://svn.apache.org/viewvc/perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm?rev=436708&r1=436707&r2=436708&view=diff
==============================================================================
--- perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm (original)
+++ perl/Apache-SizeLimit/trunk/lib/Apache/SizeLimit.pm Fri Aug 25 01:06:23 2006
@@ -66,8 +66,10 @@
     # test it, since apparently it does not push a handler onto the
     # PerlCleanupHandler phase. That means that there's no way to use
     # $r->get_handlers() to check the results of calling this method.
-    $r->push_handlers('PerlCleanupHandler',
-                      sub { $class->_exit_if_too_big(shift) });
+    $r->push_handlers(
+                      'PerlCleanupHandler',
+                      sub { $class->_exit_if_too_big(shift) }
+                     );
     $r->pnotes(size_limit_cleanup => 1);
 }