escaping the subject isn't needed in the mbox importer
This commit is contained in:
parent
3cd73cdf18
commit
6c829c24d7
|
@ -118,7 +118,7 @@ module ImportScripts::Mbox
|
|||
def map_first_post(row)
|
||||
mapped = map_post(row)
|
||||
mapped[:category] = category_id_from_imported_category_id(row['category'])
|
||||
mapped[:title] = CGI.escapeHTML(row['subject'].strip)[0...255]
|
||||
mapped[:title] = row['subject'].strip[0...255]
|
||||
mapped
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue