add conditions for making multi cates and tags more stable

This commit is contained in:
Fu Matthew 2013-03-13 17:53:11 +08:00
parent aa851cad76
commit 66633443de
2 changed files with 4 additions and 4 deletions

View File

@ -65,11 +65,11 @@ class Admin::PagePartsController < OrbitBackendController
params[:page_part][:module_app] = nil
end
if params[:page_part][:tag].include?("nil")
if params[:page_part][:tag].nil? || params[:page_part][:tag].include?("nil")
params[:page_part][:tag] = []
end
if params[:page_part][:category].include?("nil")
if params[:page_part][:category].nil? || params[:page_part][:category].include?("nil")
params[:page_part][:category] = []
end

View File

@ -79,11 +79,11 @@ helper Admin::PagePartsHelper
params[:page][:frontend_field] = params[:page][:frontend_field].zip( params[:page][:frontend_field_type] ) if params[:page][:frontend_field]
params[:page][:frontend_field_type] = nil
if params[:page][:tag].include?("nil")
if params[:page][:tag].nil? || params[:page][:tag].include?("nil")
params[:page][:tag] = []
end
if params[:page][:category].include?("nil")
if params[:page][:category].nil? || params[:page][:category].include?("nil")
params[:page][:category] = []
end