James Moger
2014-02-28 4fb2c0728ac4d78d6cf3ec388b979ccc56629c63
Fix author search links from compare pages
2 files modified
3 ■■■■ changed files
releases.moxie 1 ●●●● patch | view | raw | blame | history
src/main/java/com/gitblit/wicket/panels/LogPanel.java 2 ●●● patch | view | raw | blame | history
releases.moxie
@@ -28,6 +28,7 @@
    - Ignore the default contents of .git/description file
    - Fix error on generating activity page when there is no activity
    - Fix raw page content type of binaries when running behind a reverse proxy
    - Fix author search links from compare pages
    changes:
    - Gitblit now rejects pushes to identified mirror repositories (issue-5)
    - Personal repository prefix (~) is now configurable (issue-265)
src/main/java/com/gitblit/wicket/panels/LogPanel.java
@@ -117,7 +117,7 @@
                String author = entry.getAuthorIdent().getName();
                LinkPanel authorLink = new LinkPanel("commitAuthor", "list", author,
                        GitSearchPage.class, WicketUtils.newSearchParameter(repositoryName,
                                objectId, author, Constants.SearchType.AUTHOR));
                                null, author, Constants.SearchType.AUTHOR));
                setPersonSearchTooltip(authorLink, author, Constants.SearchType.AUTHOR);
                item.add(authorLink);