Fix 'Missing Frontend Page' when page is a subpage

This commit is contained in:
Manson Wang 2013-11-21 14:33:16 +08:00
parent f702410c9f
commit 26124e9138
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ class PagesController < ApplicationController
end
end
@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
end
raise PageError,'Missing Frontend Page' if @item.nil?
end