aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRhenium <rhenium@rhe.jp>2014-01-21 07:04:42 +0900
committerRhenium <rhenium@rhe.jp>2014-01-21 07:04:42 +0900
commitfebbf8522c36b0633b26257ce1febb6066f5c12f (patch)
treedb972257eb0512cb4afc9f61964795bd97f01e96
parent174f0059afe8914554c454b6c04c80cf278a9d1e (diff)
downloadaclog-febbf8522c36b0633b26257ce1febb6066f5c12f.tar.gz
fix _tweet.html.haml: not use 'raw'
-rw-r--r--app/views/tweets/_tweet.html.haml3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/tweets/_tweet.html.haml b/app/views/tweets/_tweet.html.haml
index a3b3146..9df1cf6 100644
--- a/app/views/tweets/_tweet.html.haml
+++ b/app/views/tweets/_tweet.html.haml
@@ -53,7 +53,8 @@
- if logged_in?
%span.import= link_to "import", import_path(tweet.id)
%span.source
- = raw "via " + link_to_source_text(tweet.source)
+ via
+ = link_to_source_text(tweet.source)
.stats
%dl
- [["favs", tweet.favorites_count, tweet.favoriters], ["retweets", tweet.retweets_count, tweet.retweeters]].each do |title, count, users|