[Jifty-commit] r1754 - jifty/trunk/lib/Jifty

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Fri Aug 4 13:27:35 EDT 2006


Author: nelhage
Date: Fri Aug  4 13:27:34 2006
New Revision: 1754

Modified:
   jifty/trunk/lib/Jifty/LetMe.pm

Log:
Unescape LetMe arguments properly

Modified: jifty/trunk/lib/Jifty/LetMe.pm
==============================================================================
--- jifty/trunk/lib/Jifty/LetMe.pm	(original)
+++ jifty/trunk/lib/Jifty/LetMe.pm	Fri Aug  4 13:27:34 2006
@@ -177,9 +177,9 @@
     $self->path( shift @atoms );
     $self->checksum_provided( pop @atoms );
 
-    my %args = @atoms;
+    my %args = map {URI::Escape::uri_unescape($_)} @atoms;
     $self->until( delete $args{until} ) if $args{until};
-    
+
     $self->args(\%args);
 }
 


More information about the Jifty-commit mailing list