janinedog: (Default)
Janine ([personal profile] janinedog) wrote in [site community profile] changelog2009-05-01 02:07 am

[dw-free] Make sure the 'code' GET parameter gets passed to the SSL version of this page.

[commit: http://hg.dwscoalition.org/dw-free/rev/54d98e497789]

Make sure the 'code' GET parameter gets passed to the SSL version of this
page.

Patch by [personal profile] janinedog.

Files modified:
  • htdocs/create.bml
--------------------------------------------------------------------------------
diff -r d044a86a82b9 -r 54d98e497789 htdocs/create.bml
--- a/htdocs/create.bml	Fri May 01 01:44:15 2009 +0000
+++ b/htdocs/create.bml	Fri May 01 02:07:17 2009 +0000
@@ -26,6 +26,7 @@ body<=
     my @getargs;
     push @getargs, "from=$GET{from}" if $GET{from};
     push @getargs, "user=$GET{user}" if $GET{user};
+    push @getargs, "code=$GET{code}" if $GET{code};
     my $getextra = '?' . join( '&', @getargs ) if @getargs;
 
     if ( $LJ::USE_SSL && !$LJ::IS_SSL && $GET{ssl} ne 'no' ) {
--------------------------------------------------------------------------------