Prevent server from displaying warnings

pull/6827/head
Mark Maglana 14 years ago
parent 8d1f921b47
commit e3b17d91c6
  1. 4
      lib/backlogs_issue_patch.rb

@ -34,12 +34,12 @@ module Backlogs
def journalized_update_attributes!(attribs)
self.init_journal(User.current)
return self.update_attributes! attribs
return self.update_attributes!(attribs)
end
def journalized_update_attributes(attribs)
self.init_journal(User.current)
return self.update_attributes attribs
return self.update_attributes(attribs)
end
def journalized_update_attribute(attrib, v)

Loading…
Cancel
Save