mirror of
https://github.com/discourse/discourse.git
synced 2025-02-21 03:19:10 +00:00
FIX: dates should also store recurring (#6814)
This commit is contained in:
parent
2b006c0429
commit
8ce76460ed
@ -28,7 +28,7 @@ after_initialize do
|
||||
date = {}
|
||||
cooked_date.attributes.values.each do |attribute|
|
||||
data_name = attribute.name&.gsub('data-', '')
|
||||
if data_name && ['date', 'time', 'timezone'].include?(data_name)
|
||||
if data_name && ['date', 'time', 'timezone', 'recurring'].include?(data_name)
|
||||
unless attribute.value == 'undefined'
|
||||
date[data_name] = CGI.escapeHTML(attribute.value || "")
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user