Fix get_viewable

This commit is contained in:
chris 2013-07-22 17:41:52 +08:00
parent 2265b0b404
commit 1ba1703e90
1 changed files with 2 additions and 1 deletions

View File

@ -230,7 +230,6 @@ class ApplicationController < ActionController::Base
end
def get_sorted_and_filtered(object_class, query = nil, objects = nil)
object_class = object_class.classify.constantize
if params[:filter] || params[:sort] || params[:new_filter]
@filter = params[:filter]
new_filter = params[:new_filter]
@ -249,6 +248,7 @@ class ApplicationController < ActionController::Base
@filter = {new_filter[:type] => [new_filter[:id].to_s]}
end
object_class = object_class.classify.constantize
objects ||= get_objects(object_class, query)
unless params[:sort].blank?
options = params[:sort_options]
@ -390,6 +390,7 @@ class ApplicationController < ActionController::Base
def get_viewable(object_class, query=nil)
object_class = object_class.classify.constantize
get_objects(object_class,query).order_by(:created_at, :desc)
end