Commit 61049424 authored by randx's avatar randx

Sanitize for network graph

parent ae1d9fb4
...@@ -5,6 +5,8 @@ module Gitlab ...@@ -5,6 +5,8 @@ module Gitlab
attr_accessor :time, :space attr_accessor :time, :space
attr_accessor :refs attr_accessor :refs
include ActionView::Helpers::SanitizeHelper
def self.to_graph(project) def self.to_graph(project)
@repo = project.repo @repo = project.repo
commits = Grit::Commit.find_all(@repo, nil, {max_count: 650}) commits = Grit::Commit.find_all(@repo, nil, {max_count: 650})
...@@ -164,7 +166,7 @@ module Gitlab ...@@ -164,7 +166,7 @@ module Gitlab
h[:refs] = refs.collect{|r|r.name}.join(" ") unless refs.nil? h[:refs] = refs.collect{|r|r.name}.join(" ") unless refs.nil?
h[:id] = sha h[:id] = sha
h[:date] = date h[:date] = date
h[:message] = Gitlab::Encode.utf8(message) h[:message] = sanitize(Gitlab::Encode.utf8(message))
h[:login] = author.email h[:login] = author.email
h h
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment