[Jifty-commit] jifty-plugin-recorder branch, master, updated. c6bd818bb1c886bf97d07e141ba6aefa7d1a35fc

Jifty commits jifty-commit at lists.jifty.org
Fri Mar 26 13:33:41 EDT 2010


The branch, master has been updated
       via  c6bd818bb1c886bf97d07e141ba6aefa7d1a35fc (commit)
      from  a27e1a0c94ae465d7735eb6266540f378a34a6b7 (commit)

Summary of changes:
 lib/Jifty/Plugin/Recorder.pm |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

- Log -----------------------------------------------------------------
commit c6bd818bb1c886bf97d07e141ba6aefa7d1a35fc
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Mar 27 01:33:31 2010 +0800

    no $cgi now

diff --git a/lib/Jifty/Plugin/Recorder.pm b/lib/Jifty/Plugin/Recorder.pm
index 33feb20..df2a602 100644
--- a/lib/Jifty/Plugin/Recorder.pm
+++ b/lib/Jifty/Plugin/Recorder.pm
@@ -92,7 +92,7 @@ sub before_request
 {
     my $self    = shift;
     my $handler = shift;
-    my $cgi     = shift;
+    my $req     = shift;
 
     $self->logged_request(0);
     $self->request_time(time);
@@ -101,7 +101,7 @@ sub before_request
         my $delta = $self->request_time - $self->start;
 
         my $request = {
-            cgi   => nfreeze($cgi),
+            req   => nfreeze($req),
             ENV   => \%ENV,
             time  => $delta,
             start => $self->request_time,

-----------------------------------------------------------------------


More information about the Jifty-commit mailing list