[Jifty-commit] r4613 - in jifty/trunk: lib/Jifty/Plugin

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Tue Dec 4 01:22:24 EST 2007


Author: sartak
Date: Tue Dec  4 01:22:23 2007
New Revision: 4613

Modified:
   jifty/trunk/   (props changed)
   jifty/trunk/lib/Jifty/Plugin/Recorder.pm

Log:
 r48551 at onn:  sartak | 2007-12-04 01:21:27 -0500
 Use Jifty::Util->absolute_path on the recorder log path


Modified: jifty/trunk/lib/Jifty/Plugin/Recorder.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Plugin/Recorder.pm	(original)
+++ jifty/trunk/lib/Jifty/Plugin/Recorder.pm	Tue Dec  4 01:22:23 2007
@@ -27,8 +27,8 @@
     return if $self->_pre_init;
 
     $self->start(time);
-    $self->path($args{path});
-    Jifty::Util->make_path($args{path});
+    $self->path(Jifty::Util->absolute_path( $args{path} ));
+    Jifty::Util->make_path($self->path);
 
     $self->loghandle($self->get_loghandle);
 


More information about the Jifty-commit mailing list