[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
wyntarvox.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=1025
Don't escape the FAQ title in the see_request dropdown
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
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+//; --------------------------------------------------------------------------------