fix front tag

This commit is contained in:
JiangRu 2014-12-25 10:54:58 +08:00
parent 03908e402d
commit 52c01d4af9
1 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,11 @@
class AnnouncementsController < ApplicationController
def index
announcements = Bulletin.where(:title.ne => "",:is_preview.in=>[false,nil]).can_display.is_approved.order_by(:postdate=>'desc').filter_by_categories.filter_by_tags(OrbitHelper.params['tags'])
if !OrbitHelper.params['tags'].blank?
announcements = Bulletin.where(:title.ne => "",:is_preview.in=>[false,nil]).can_display.is_approved.order_by(:postdate=>'desc').filter_by_tags(OrbitHelper.params['tags']).page(OrbitHelper.page_number).per(OrbitHelper.page_data_count)
else
announcements = Bulletin.where(:title.ne => "",:is_preview.in=>[false,nil]).can_display.is_approved.order_by(:postdate=>'desc').filter_by_categories.filter_by_tags
end
anns = announcements.collect do |a|
statuses = a.statuses_with_classname.collect do |status|