Skip to content
Extraits de code Groupes Projets
Non vérifiée Valider b78ef83c rédigé par Dennis Schubert's avatar Dennis Schubert
Parcourir les fichiers

Merge branch 'release/0.6.1.0' into next-minor

parents 9f38a424 e18627f5
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -45,6 +45,8 @@ Note: Although this is a minor release, the configuration file changed because t ...@@ -45,6 +45,8 @@ Note: Although this is a minor release, the configuration file changed because t
* Fix message modal on profile page [#7137](https://github.com/diaspora/diaspora/pull/7137) * Fix message modal on profile page [#7137](https://github.com/diaspora/diaspora/pull/7137)
* Display error message when aspect membership changes fail [#7132](https://github.com/diaspora/diaspora/pull/7132) * Display error message when aspect membership changes fail [#7132](https://github.com/diaspora/diaspora/pull/7132)
* Avoid the creation of pod that are none [#7145](https://github.com/diaspora/diaspora/pull/7145) * Avoid the creation of pod that are none [#7145](https://github.com/diaspora/diaspora/pull/7145)
* Fixed tag pages with alternate default aspect settings [#7262](https://github.com/diaspora/diaspora/pull/7162)
* Suppressed CSP related deprecation warnings [#7263](https://github.com/diaspora/diaspora/pull/7163)
## Features ## Features
* Deleted comments will be removed when loading more comments [#7045](https://github.com/diaspora/diaspora/pull/7045) * Deleted comments will be removed when loading more comments [#7045](https://github.com/diaspora/diaspora/pull/7045)
......
...@@ -4,4 +4,4 @@ ...@@ -4,4 +4,4 @@
.col-md-12 .col-md-12
%h4 %h4
=t('bookmarklet.post_something') =t('bookmarklet.post_something')
= render partial: 'publisher/publisher', locals: { aspect: :profile, :selected_aspects => @aspects, :aspect_ids => @aspect_ids } = render partial: "publisher/publisher", locals: publisher_aspects_for(nil)
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
= @stream.display_tag_name = @stream.display_tag_name
- if current_user - if current_user
= render 'publisher/publisher', :selected_aspects => @stream.aspect_ids, :aspect_ids => @stream.aspect_ids, aspect: @stream.aspect = render "publisher/publisher", publisher_aspects_for(@stream)
#main_stream.stream #main_stream.stream
......
...@@ -43,6 +43,7 @@ SecureHeaders::Configuration.default do |config| ...@@ -43,6 +43,7 @@ SecureHeaders::Configuration.default do |config|
csp[:report_uri] = [AppConfig.settings.csp.report_uri] if AppConfig.settings.csp.report_uri.present? csp[:report_uri] = [AppConfig.settings.csp.report_uri] if AppConfig.settings.csp.report_uri.present?
if AppConfig.settings.csp.report_only? if AppConfig.settings.csp.report_only?
config.csp = SecureHeaders::OPT_OUT
config.csp_report_only = csp config.csp_report_only = csp
else else
config.csp = csp config.csp = csp
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter