Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
gitg
Commits
8553d941
Commit
8553d941
authored
Jan 22, 2022
by
Alberto Fanjul
Browse files
Avoid parse html tags from commits
parent
94bf983f
Changes
1
Hide whitespace changes
Inline
Side-by-side
libgitg/gitg-diff-view-commit-details.vala
View file @
8553d941
...
...
@@ -187,7 +187,7 @@ class Gitg.DiffViewCommitDetails : Gtk.Grid
return
;
}
d_label_subject
.
set_markup
(
subject_to_markup
(
commit
.
get_subject
()));
d_label_subject
.
set_markup
(
subject_to_markup
(
Markup
.
escape_text
(
commit
.
get_subject
()))
)
;
d_label_sha1
.
label
=
commit
.
get_id
().
to_string
();
var
author
=
commit
.
get_author
();
...
...
Alberto Fanjul
@albfan
mentioned in issue
#349 (closed)
·
Jan 22, 2022
mentioned in issue
#349 (closed)
mentioned in issue #349
Toggle commit list
Alberto Fanjul
@albfan
mentioned in issue
#365 (closed)
·
Mar 03, 2022
mentioned in issue
#365 (closed)
mentioned in issue #365
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment