From 579cdd4a691adbbe89f85ce679502cf5d1f045d0 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Wed, 28 Nov 2012 17:09:45 -0500 Subject: [PATCH] Fixed missing format call for certificate authentication logging --- src/com/gitblit/wicket/pages/HistoryPage.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/com/gitblit/wicket/pages/HistoryPage.java b/src/com/gitblit/wicket/pages/HistoryPage.java index 122eeb8..563202e 100644 --- a/src/com/gitblit/wicket/pages/HistoryPage.java +++ b/src/com/gitblit/wicket/pages/HistoryPage.java @@ -32,7 +32,7 @@ int nextPage = pageNumber + 1; HistoryPanel history = new HistoryPanel("historyPanel", repositoryName, objectId, path, - getRepository(), -1, pageNumber - 1); + getRepository(), -1, pageNumber - 1, getRepositoryModel().showRemoteBranches); boolean hasMore = history.hasMore(); add(history); -- Gitblit v1.9.1