Merge branch 'stable' into develop

This commit is contained in:
Dennis Schubert 2016-01-26 15:19:55 +01:00
commit 7c197756dd
3 changed files with 7 additions and 1 deletions

View file

@ -122,6 +122,11 @@ Contributions are very welcome, the hard work is done!
* Keyboard shortcuts now do work on profile pages as well [#6647](https://github.com/diaspora/diaspora/pull/6647/files)
* Add the podmin email address to 500 errors [#6652](https://github.com/diaspora/diaspora/pull/6652)
# 0.5.6.3
Fix evil regression caused by Active Model no longer exposing
`include_root_in_json` in instances.
# 0.5.6.2
* Fix [CVE-2016-0751](https://groups.google.com/forum/#!topic/rubyonrails-security/9oLY_FCzvoc) - Possible Object Leak and Denial of Service attack in Action Pack

View file

@ -3,6 +3,8 @@
# the COPYRIGHT file.
class Post < ActiveRecord::Base
self.include_root_in_json = false
include ApplicationHelper
include Diaspora::Federated::Shareable

View file

@ -9,7 +9,6 @@ class PostPresenter < BasePresenter
end
def as_json(_options={})
@post.include_root_in_json = false
@post.as_json(only: directly_retrieved_attributes).merge(non_directly_retrieved_attributes)
end