Skip to content
Snippets Groups Projects
Commit ed899a2f authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Replace sanitize with escape once

parent 61049424
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -5,7 +5,7 @@ module Gitlab
attr_accessor :time, :space
attr_accessor :refs
 
include ActionView::Helpers::SanitizeHelper
include ActionView::Helpers::TagHelper
 
def self.to_graph(project)
@repo = project.repo
Loading
Loading
@@ -166,7 +166,7 @@ module Gitlab
h[:refs] = refs.collect{|r|r.name}.join(" ") unless refs.nil?
h[:id] = sha
h[:date] = date
h[:message] = sanitize(Gitlab::Encode.utf8(message))
h[:message] = escape_once(Gitlab::Encode.utf8(message))
h[:login] = author.email
h
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment