Convert nested quotes

This commit is contained in:
michael@discoursehosting.com 2017-04-02 20:38:23 +00:00
parent 6168bcb4c4
commit 17b5303449
1 changed files with 2 additions and 2 deletions

View File

@ -355,9 +355,9 @@ class ImportScripts::Smf2 < ImportScripts::Base
tl = topic_lookup_from_imported_post_id($~[:msg].to_i) tl = topic_lookup_from_imported_post_id($~[:msg].to_i)
quote << ", post:#{tl[:post_number]}, topic:#{tl[:topic_id]}" if tl quote << ", post:#{tl[:post_number]}, topic:#{tl[:topic_id]}" if tl
end end
quote << "\"]#{inner}[/quote]" quote << "\"]#{convert_quotes(inner)}[/quote]"
else else
"<blockquote>#{inner}</blockquote>" "<blockquote>#{convert_quotes(inner)}</blockquote>"
end end
end end
end end