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-03-17 05:26 pm

[dw-free] FAQs do not sort correctly

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

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

Sort FAQs correctly when viewing by category.

Patch by [personal profile] pauamma.

Files modified:
  • htdocs/support/faqbrowse.bml
--------------------------------------------------------------------------------
diff -r 6b95b555fb1e -r 34221b3e72bc htdocs/support/faqbrowse.bml
--- a/htdocs/support/faqbrowse.bml	Tue Mar 17 17:12:48 2009 +0000
+++ b/htdocs/support/faqbrowse.bml	Tue Mar 17 17:25:26 2009 +0000
@@ -85,7 +85,8 @@ body<=
         }
 
         $$title = BML::ml( '.title_cat', { catname => LJ::ehtml( $catname ) } );
-        @faqs = LJ::Faq->load_all( lang => $lang, cat => $faqcatarg );
+        @faqs = sort { $a->sortorder <=> $b->sortorder }
+                     LJ::Faq->load_all( lang => $lang, cat => $faqcatarg );
         LJ::Faq->render_in_place( { lang => $lang, user => $user,
                                     url => $user_url }, @faqs );
     }
--------------------------------------------------------------------------------