removed the auto_link seems to fix HTML injection, no more autolinking
This commit is contained in:
parent
5ffb5adb65
commit
1882509a0b
3 changed files with 3 additions and 3 deletions
|
|
@ -7,6 +7,6 @@
|
||||||
= person_image_tag(post.person)
|
= person_image_tag(post.person)
|
||||||
%span.from
|
%span.from
|
||||||
= link_to post.person.real_name, post.person
|
= link_to post.person.real_name, post.person
|
||||||
= auto_link sanitize post.text
|
= post.text
|
||||||
%div.time
|
%div.time
|
||||||
= "#{time_ago_in_words(post.updated_at)} #{t('.ago')}"
|
= "#{time_ago_in_words(post.updated_at)} #{t('.ago')}"
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
.content
|
.content
|
||||||
%span.from
|
%span.from
|
||||||
= link_to post.person.real_name, post.person
|
= link_to post.person.real_name, post.person
|
||||||
= auto_link sanitize post.message
|
= post.message
|
||||||
|
|
||||||
.info
|
.info
|
||||||
%span.time= link_to(how_long_ago(post), object_path(post))
|
%span.time= link_to(how_long_ago(post), object_path(post))
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
%h1
|
%h1
|
||||||
= link_to @status_message.person.real_name, @status_message.person
|
= link_to @status_message.person.real_name, @status_message.person
|
||||||
= auto_link sanitize @status_message.message
|
= @status_message.message
|
||||||
|
|
||||||
|
|
||||||
%h4= "comments (#{@status_message.comments.count})"
|
%h4= "comments (#{@status_message.comments.count})"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue