Convert nested quotes
This commit is contained in:
parent
6168bcb4c4
commit
17b5303449
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue