diff --git a/Changelog.md b/Changelog.md
index 855aef878edc2698aaf3210ffd10685a5f213454..396e70d442e8b86f8673ac2ce806bbddff2fe883 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,3 +1,7 @@
+# 0.4.1.3
+
+* Update Redcarped, fixes [OSVDB-120415](http://osvdb.org/show/osvdb/120415).
+
 # 0.4.1.2
 
 * Update Rails, fixes [CVE-2014-7818](https://groups.google.com/forum/#!topic/rubyonrails-security/dCp7duBiQgo).
diff --git a/Gemfile b/Gemfile
index 91c9ce04dca87f7ee510dfdccd3542d9055422f7..e9d70aef2dbcc06fd39dcb8af922a392628bc873 100644
--- a/Gemfile
+++ b/Gemfile
@@ -68,7 +68,7 @@ gem 'messagebus_ruby_api', '1.0.3'
 
 gem 'nokogiri',         '1.6.1'
 gem 'rails_autolink',   '1.1.5'
-gem 'redcarpet',        '3.1.2'
+gem 'redcarpet',        '3.2.3'
 gem 'roxml',            '3.1.6'
 gem 'ruby-oembed',      '0.8.9'
 gem 'opengraph_parser', '0.2.3'
diff --git a/Gemfile.lock b/Gemfile.lock
index 4cb797264361ee95cd607c5573adac19615d3bdf..86b6f0bc320ccac1eedfaebd403afca7d6e8319f 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -361,7 +361,7 @@ GEM
       ffi (>= 0.5.0)
     rdoc (3.12.2)
       json (~> 1.4)
-    redcarpet (3.1.2)
+    redcarpet (3.2.3)
     redis (3.1.0)
     redis-namespace (1.5.1)
       redis (~> 3.0, >= 3.0.4)
@@ -530,7 +530,7 @@ DEPENDENCIES
   rails_autolink (= 1.1.5)
   rb-fsevent (= 0.9.4)
   rb-inotify (= 0.9.4)
-  redcarpet (= 3.1.2)
+  redcarpet (= 3.2.3)
   remotipart (= 1.2.1)
   roxml (= 3.1.6)
   rspec-instafail (= 0.2.4)
diff --git a/config/defaults.yml b/config/defaults.yml
index c7434bafda8e3282f287c5c5e0c754e0156e6153..bd6d1f42acac0b2dbc409a26bdf1dbb90143778e 100644
--- a/config/defaults.yml
+++ b/config/defaults.yml
@@ -4,7 +4,7 @@
 
 defaults:
   version:
-    number: "0.4.1.2" # Do not touch unless doing a release, do not backport the version number that's in master but keep develop to always say "head"
+    number: "0.4.1.3" # Do not touch unless doing a release, do not backport the version number that's in master but keep develop to always say "head"
   heroku: false
   environment:
     url: "http://localhost:3000/"
diff --git a/spec/helpers/notifier_helper_spec.rb b/spec/helpers/notifier_helper_spec.rb
index 9f3e887e9888043954135630f9c965886f5e6034..5917afbc8aa325354cc2fffd4f21c61fe20de209 100644
--- a/spec/helpers/notifier_helper_spec.rb
+++ b/spec/helpers/notifier_helper_spec.rb
@@ -14,7 +14,7 @@ describe NotifierHelper do
       # post for markdown test
       @markdown_post = FactoryGirl.create(:status_message)
       @markdown_post.text = "[link](http://diasporafoundation.org) **bold text** *other text*"
-      @striped_markdown_post = "link bold text other text"
+      @striped_markdown_post = "link (http://diasporafoundation.org) bold text other text"
     end
 
     it 'truncates in the post' do
@@ -37,7 +37,7 @@ describe NotifierHelper do
       # comment for markdown test
       @markdown_comment = FactoryGirl.create(:comment)
       @markdown_comment.text = "[link](http://diasporafoundation.org) **bold text** *other text*"
-      @striped_markdown_comment = "link bold text other text"
+      @striped_markdown_comment = "link (http://diasporafoundation.org) bold text other text"
     end
 
     it 'truncates in the comment' do