From 0dccce1b5cffce03124f001ae03b66962f36fee6 Mon Sep 17 00:00:00 2001
From: Trygve Laugstøl <trygvis@inamo.no>
Date: Mon, 10 Oct 2011 10:49:29 -0400
Subject: [PATCH] o Adding missing properties to gitblit.properties for adjusting the context path.
---
src/com/gitblit/wicket/pages/TagPage.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/com/gitblit/wicket/pages/TagPage.java b/src/com/gitblit/wicket/pages/TagPage.java
index 71a8645..c1efb89 100644
--- a/src/com/gitblit/wicket/pages/TagPage.java
+++ b/src/com/gitblit/wicket/pages/TagPage.java
@@ -39,7 +39,7 @@
Repository r = getRepository();
// Find tag in repository
- List<RefModel> tags = JGitUtils.getTags(r, -1);
+ List<RefModel> tags = JGitUtils.getTags(r, true, -1);
RefModel tagRef = null;
for (RefModel tag : tags) {
if (tag.getName().equals(objectId) || tag.getObjectId().getName().equals(objectId)) {
--
Gitblit v1.9.1