Skip to content

Commit

Permalink
Fix display of author's email address in history
Browse files Browse the repository at this point in the history
  • Loading branch information
ahornace authored and Vladimir Kotal committed Nov 22, 2021
1 parent 1ac9223 commit e24a7d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opengrok-web/src/main/webapp/history.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -340,11 +340,11 @@ document.domReady.push(function() {domReadyHistory();});
if (author == null) {
%>(no author)<%
} else if (userPage != null && userPage.length() > 0) {
String alink = Util.getEmail(author);
String alink = Util.getEmail(author);
%><a href="<%= userPage + Util.htmlize(alink) + userPageSuffix
%>"><%= Util.htmlize(author)%></a><%
} else {
%><%= author %><%
%><%= Util.htmlize(author) %><%
}
%></td>
<td><a name="<%= rev %>"></a><%
Expand Down

0 comments on commit e24a7d7

Please sign in to comment.