]> source.dussan.org Git - gitblit.git/commitdiff
Fix author search links from compare pages
authorJames Moger <james.moger@gitblit.com>
Fri, 28 Feb 2014 15:56:13 +0000 (10:56 -0500)
committerJames Moger <james.moger@gitblit.com>
Fri, 28 Feb 2014 16:26:08 +0000 (11:26 -0500)
releases.moxie
src/main/java/com/gitblit/wicket/panels/LogPanel.java

index 299db97f9539028cd0bff21df8b742d315402b4f..4825519c1116e0ebac15e540769bed82ac7f81f9 100644 (file)
@@ -28,6 +28,7 @@ r20: {
        - 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)
index f8d980e53243c4278c9de83eeb01c1a66e7472ed..dad25a05281e3d477e10989dd0b16163313c4865 100644 (file)
@@ -117,7 +117,7 @@ public class LogPanel extends BasePanel {
                                String author = entry.getAuthorIdent().getName();\r
                                LinkPanel authorLink = new LinkPanel("commitAuthor", "list", author,\r
                                                GitSearchPage.class, WicketUtils.newSearchParameter(repositoryName,\r
-                                                               objectId, author, Constants.SearchType.AUTHOR));\r
+                                                               null, author, Constants.SearchType.AUTHOR));\r
                                setPersonSearchTooltip(authorLink, author, Constants.SearchType.AUTHOR);\r
                                item.add(authorLink);\r
 \r