BUGFIX: string in server_plugin_outlet needs to be mutable

This commit is contained in:
Angus McLeod 2018-06-07 15:44:20 +10:00 committed by Gerhard Schlager
parent c6bf8f6e24
commit f10b663eb4

View File

@ -329,7 +329,7 @@ module ApplicationHelper
erbs = ApplicationHelper.all_connectors.select { |c| c =~ matcher } erbs = ApplicationHelper.all_connectors.select { |c| c =~ matcher }
return "" if erbs.blank? return "" if erbs.blank?
result = "" result = +""
erbs.each { |erb| result << render(file: erb) } erbs.each { |erb| result << render(file: erb) }
result.html_safe result.html_safe
end end