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

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Fri Aug 4 15:09:53 EDT 2006


Author: nelhage
Date: Fri Aug  4 15:09:52 2006
New Revision: 1758

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

Log:
Properly encode arguments when generating LetMe URLs.

Modified: jifty/trunk/lib/Jifty/LetMe.pm
==============================================================================
--- jifty/trunk/lib/Jifty/LetMe.pm	(original)
+++ jifty/trunk/lib/Jifty/LetMe.pm	Fri Aug  4 15:09:52 2006
@@ -214,7 +214,7 @@
     return join ('/', 
         $args{'email'},
         $self->path,
-        %{$self->args},
+        (map {URI::Escape::uri_escape($_)} %{$self->args}),
         (defined $self->until ? ( 'until', $self->until ) : () ), #?
         $self->generate_checksum  
         );


More information about the Jifty-commit mailing list