Merge pull request #3143 from techAPJ/patch-1
FIX: PMs were not allowed to be edited in some cases
This commit is contained in:
commit
605ae8a1a3
|
@ -131,7 +131,7 @@ class TopicsController < ApplicationController
|
|||
end
|
||||
|
||||
changes.delete(:title) if topic.title == changes[:title]
|
||||
changes.delete(:category_id) if topic.category_id == changes[:category_id].to_i
|
||||
changes.delete(:category_id) if (changes[:category_id].empty? or topic.category_id == changes[:category_id].to_i)
|
||||
|
||||
success = true
|
||||
if changes.length > 0
|
||||
|
|
Loading…
Reference in New Issue