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-05-09 06:48 am

[dw-free] FAQ dropdown in see_request.bml over-zealously escaping

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

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

Don't escape the FAQ title in the see_request dropdown

Patch by [personal profile] wyntarvox.

Files modified:
  • htdocs/support/see_request.bml
--------------------------------------------------------------------------------
diff -r 0ce1abe9ca56 -r f55c3450d521 htdocs/support/see_request.bml
--- a/htdocs/support/see_request.bml	Sat May 09 02:01:33 2009 +0000
+++ b/htdocs/support/see_request.bml	Sat May 09 06:46:53 2009 +0000
@@ -728,7 +728,7 @@ body<=
             push @faqlist, ('0', "[ $faqcat{$faqcat}->{'faqcatname'} ]");
             foreach my $faq ( sort { $a->sortorder <=> $b->sortorder }
                                    @{ $faqq{$faqcat} || [] } ) {
-                my $q = $faq->question_html;
+                my $q = $faq->question_raw;
                 next unless $q;
                 $q = "... $q";
                 $q =~ s/^\s+//;
--------------------------------------------------------------------------------