mirror of
https://github.com/discourse/discourse.git
synced 2025-01-30 16:33:59 +08:00
BUGFIX: string in server_plugin_outlet needs to be mutable
This commit is contained in:
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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user