mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:51:50 +08:00
Merge pull request #3915 from tgxworld/dont_use_bang_methods
FIX: Avoid bang methods in Disqus importer.
This commit is contained in:
commit
4b036bb7bf
|
@ -151,8 +151,7 @@ class DisqusSAX < Nokogiri::XML::SAX::Document
|
||||||
@threads.delete(id)
|
@threads.delete(id)
|
||||||
else
|
else
|
||||||
# Normalize titles
|
# Normalize titles
|
||||||
t[:title].gsub!(@strip, '') if @strip.present?
|
t[:title] = [:title].gsub(@strip, '').strip if @strip.present?
|
||||||
t[:title].strip!
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user