mirror of
https://github.com/discourse/discourse.git
synced 2025-02-22 12:17:12 +00:00
add support for all types of unordered lists in migrate_old_polls
This commit is contained in:
parent
01d4085125
commit
06643fb625
@ -13,10 +13,10 @@ task "poll:migrate_old_polls" => :environment do
|
||||
putc "."
|
||||
# go back in time
|
||||
Timecop.freeze(post.created_at + 1.minute) do
|
||||
post.raw = post.raw.gsub(/\n\n([ ]*- )/, "\n\\1") + "\n\n"
|
||||
post.raw = post.raw.gsub(/\n\n([ ]*[-\*\+] )/, "\n\\1") + "\n\n"
|
||||
# fix the RAW when needed
|
||||
if post.raw !~ /\[poll\]/
|
||||
lists = /^[ ]*- .+?$\n\n/m.match(post.raw)
|
||||
lists = /^[ ]*[-\*\+] .+?$\n\n/m.match(post.raw)
|
||||
next if lists.blank? || lists.length == 0
|
||||
first_list = lists[0]
|
||||
post.raw = post.raw.sub(first_list, "\n[poll]\n#{first_list}\n[/poll]\n")
|
||||
|
Loading…
x
Reference in New Issue
Block a user