Fix announcement search page
This commit is contained in:
parent
f3bb20ee45
commit
504f47ce2b
|
@ -207,6 +207,7 @@ class PagesController < ApplicationController
|
||||||
|
|
||||||
@item = Item.root.children.where(:module_app_id => module_app.id).first unless @item
|
@item = Item.root.children.where(:module_app_id => module_app.id).first unless @item
|
||||||
@item = Item.where(:module_app_id => module_app.id).first unless @item
|
@item = Item.where(:module_app_id => module_app.id).first unless @item
|
||||||
|
@item = Item.where(:module_app_id => module_app.id, :app_frontend_url=>"search_result").first if !params['search_query'].blank?
|
||||||
end
|
end
|
||||||
raise PageError,'Missing Frontend Page' if @item.nil?
|
raise PageError,'Missing Frontend Page' if @item.nil?
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue