fix a bug with emailing in posts going to tumblr

This commit is contained in:
Maxwell Salzberg 2011-09-16 13:46:29 -07:00
parent e6e15483cd
commit e865dfc269
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ class Services::Tumblr < Service
post.photos.each do |photo|
html += "<img src='#{photo.url(:scaled_full)}'/><br>"
end
html += auto_link(post.text)
html += auto_link(post.text, :link => :urls)
end
end

View file

@ -2,4 +2,4 @@
= image_tag(photo.url(:scaled_full))
%br
%br
= auto_link(post.text)
= auto_link(post.text, :link => :urls)