merge with branch issue-160

This commit is contained in:
Sebastian Sdorra
2012-06-03 10:13:07 +02:00

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);
}