Skip to content

Commit e24a7d7

Browse files
ahornaceVladimir Kotal
authored and
Vladimir Kotal
committed
Fix display of author's email address in history
fixes #3766
1 parent 1ac9223 commit e24a7d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opengrok-web/src/main/webapp/history.jsp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,11 +340,11 @@ document.domReady.push(function() {domReadyHistory();});
340340
if (author == null) {
341341
%>(no author)<%
342342
} else if (userPage != null && userPage.length() > 0) {
343-
String alink = Util.getEmail(author);
343+
String alink = Util.getEmail(author);
344344
%><a href="<%= userPage + Util.htmlize(alink) + userPageSuffix
345345
%>"><%= Util.htmlize(author)%></a><%
346346
} else {
347-
%><%= author %><%
347+
%><%= Util.htmlize(author) %><%
348348
}
349349
%></td>
350350
<td><a name="<%= rev %>"></a><%

0 commit comments

Comments
 (0)