Skip to content
Snippets Groups Projects
Commit fba25992 authored by Jared Hancock's avatar Jared Hancock
Browse files

faq: Fix orm crash on front page with featured categories

parent c402df1f
No related branches found
No related tags found
No related merge requests found
......@@ -105,7 +105,7 @@ class Category extends VerySimpleModel {
function getTopArticles() {
return $this->faqs
->filter(Q::not(array('ispublished'=>0)))
->order_by('-ispublished', '-views')
->order_by('-ispublished')
->limit(5);
}
......
......@@ -22,7 +22,7 @@
</div>
<?php foreach ($C->faqs
->exclude(array('ispublished'=>FAQ::VISIBILITY_PRIVATE))
->order_by('-views')->limit(5) as $F) { ?>
->limit(5) as $F) { ?>
<div class="popular-faq"><i class="icon-file-alt"></i>
<a href="faq.php?id=<?php echo $F->getId(); ?>">
<?php echo $F->getLocalQuestion() ?: $F->getQuestion(); ?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment