Reformat Perl code.
authorMike Taylor <mike@indexdata.com>
Wed, 26 Jun 2013 11:39:31 +0000 (13:39 +0200)
committerMike Taylor <mike@indexdata.com>
Wed, 26 Jun 2013 11:39:31 +0000 (13:39 +0200)
etc/mod_perl/MyApache2/CopyCookie.pm

index 730abc3..2cdf24f 100644 (file)
@@ -1,16 +1,17 @@
-    package MyApache2::CopyCookie;
-      use Apache2::Filter ();
-      use Apache2::RequestRec ();
-      use APR::Table ();
+package MyApache2::CopyCookie;
 
-      use Apache2::Const -compile => qw(OK);
+use Apache2::Filter ();
+use Apache2::RequestRec ();
+use APR::Table ();
 
-      sub handler {
-         my $f = shift;
+use Apache2::Const -compile => qw(OK);
 
-         my $cookie = $f->r->headers_out->get('Set-Cookie');
-         $f->r->headers_out->set('X-Set-Cookie', $cookie);
-         return Apache2::Const::OK;
-      }
-      1;
+sub handler {
+    my $f = shift;
 
+    my $cookie = $f->r->headers_out->get('Set-Cookie');
+    $f->r->headers_out->set('X-Set-Cookie', $cookie);
+    return Apache2::Const::OK;
+}
+
+1;