Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorMaxwell Salzberg <maxwell@joindiaspora.com>2011-09-01 05:06:30 +0400
committerMaxwell Salzberg <maxwell@joindiaspora.com>2011-09-01 05:06:30 +0400
commit62aea0e820fcafa55bfb4190bca48c3efdd7236a (patch)
treeb0dd228171ac6470b6ed365f0ee778f52c06239e /app
parent818af38bdf72deec5b55a43a92abb634c62aba23 (diff)
fix for mention links, and the first tag links #ohYEAH
Diffstat (limited to 'app')
-rw-r--r--app/helpers/markdownify_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/markdownify_helper.rb b/app/helpers/markdownify_helper.rb
index a49ce2381..89f09e521 100644
--- a/app/helpers/markdownify_helper.rb
+++ b/app/helpers/markdownify_helper.rb
@@ -39,7 +39,7 @@ module MarkdownifyHelper
if target.respond_to?(:format_mentions)
message = target.format_mentions(message)
end
-
+
message = Diaspora::Taggable.format_tags(message, :no_escape => true)
return message.html_safe