afuna: Cat under a blanket. Text: "Cats are just little people with Fur and Fangs" (Default)
afuna ([personal profile] afuna) wrote in [site community profile] changelog2009-07-20 05:29 pm

[dw-free] $init->{style} always equals 'mine'

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

http://bugs.dwscoalition.org/show_bug.cgi?id=1459

Don't assume that "style=" should be "style=mine".

Patch by [personal profile] kareila.

Files modified:
  • cgi-bin/talklib.pl
--------------------------------------------------------------------------------
diff -r 752317d07dc7 -r d6f24cd5f075 cgi-bin/talklib.pl
--- a/cgi-bin/talklib.pl	Mon Jul 20 12:21:13 2009 -0500
+++ b/cgi-bin/talklib.pl	Mon Jul 20 17:27:43 2009 +0000
@@ -191,7 +191,7 @@ sub init
     $init->{'dthread'} = $init->{'thread'};
     $init->{'clustered'} = 0;
     $init->{'replyto'} = $form->{'replyto'}+0;
-    $init->{'style'} = $form->{'style'} ? "mine" : undef;
+    $init->{'style'} = $form->{'style'} || undef;
 
     if ($journal) {
         # they specified a journal argument, which indicates new style.
--------------------------------------------------------------------------------
yvi: Kaylee half-smiling, looking very pretty (Default)

[personal profile] yvi 2009-07-20 06:10 pm (UTC)(link)
\o/ That was fast!
kareila: (Default)

[personal profile] kareila 2009-07-20 07:35 pm (UTC)(link)
You're welcome!