mirror of
https://github.com/discourse/discourse.git
synced 2025-06-06 22:27:19 +08:00
BUGFIX: string in server_plugin_outlet needs to be mutable
This commit is contained in:

committed by
Gerhard Schlager

parent
c6bf8f6e24
commit
f10b663eb4
@ -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
|
||||||
|
Reference in New Issue
Block a user