Merged r9131 from trunk.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.3-stable@9148 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2012-03-07 18:24:51 +00:00
parent bddc546bf0
commit 8f66932a46
2 changed files with 8 additions and 4 deletions

View File

@ -39,12 +39,14 @@ class IssueCategoriesController < ApplicationController
end
def new
@category = @project.issue_categories.build(params[:issue_category])
@category = @project.issue_categories.build
@category.safe_attributes = params[:issue_category]
end
verify :method => :post, :only => :create
def create
@category = @project.issue_categories.build(params[:issue_category])
@category = @project.issue_categories.build
@category.safe_attributes = params[:issue_category]
if @category.save
respond_to do |format|
format.html do
@ -75,7 +77,8 @@ class IssueCategoriesController < ApplicationController
verify :method => :put, :only => :update
def update
if @category.update_attributes(params[:issue_category])
@category.safe_attributes = params[:issue_category]
if @category.save
respond_to do |format|
format.html {
flash[:notice] = l(:notice_successful_update)

View File

@ -16,6 +16,7 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
class IssueCategory < ActiveRecord::Base
include Redmine::SafeAttributes
belongs_to :project
belongs_to :assigned_to, :class_name => 'Principal', :foreign_key => 'assigned_to_id'
has_many :issues, :foreign_key => 'category_id', :dependent => :nullify
@ -24,7 +25,7 @@ class IssueCategory < ActiveRecord::Base
validates_uniqueness_of :name, :scope => [:project_id]
validates_length_of :name, :maximum => 30
attr_protected :project_id
safe_attributes 'name', 'assigned_to_id'
named_scope :named, lambda {|arg| { :conditions => ["LOWER(#{table_name}.name) = LOWER(?)", arg.to_s.strip]}}