do not encode changeset author name

This commit is contained in:
Sebastian Sdorra
2012-05-26 12:02:51 +02:00
parent cac2f69c89
commit b59fef96f4

View File

@@ -168,7 +168,7 @@ Sonia.repository.ChangesetViewerGrid = Ext.extend(Ext.grid.GridPanel, {
renderChangesetMetadata: function(author, p, record){
var authorValue = '';
if ( author != null ){
authorValue = Ext.util.Format.htmlEncode(author.name);
authorValue = author.name;
if ( author.mail != null ){
authorValue += ' ' + String.format(this.mailTemplate, author.mail);
}