Fix old tags

This commit is contained in:
chris 2013-01-03 12:16:02 +08:00
parent fd2b176798
commit 5b289bc1d2
1 changed files with 8 additions and 4 deletions

View File

@ -46,12 +46,16 @@ class Admin::TagsController < OrbitBackendController
protected
def set_module_app
@module_app ||= ModuleApp.first(:conditions => {:key => @app_title.underscore}) rescue nil
end
def get_tags
@tags = (@module_app ? @module_app.tags : Tag.all)
end
def setup_vars
@app_key = request.env['HTTP_REFERER'].split('/')[4]
if @app_key
@app_key.gsub!(/[?].*/, '')
@module_app = ModuleApp.first(conditions: {:key => @app_key})
end
end
end