From d7be8cc077a85658809cf6d8cef98a6910f0f858 Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Wed, 31 Oct 2012 16:30:51 -0400
Subject: [PATCH] Fixed ticgit ticket urls (issue 157)
---
docs/04_releases.mkd | 1 +
src/com/gitblit/wicket/GitBlitWebApp.java | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/docs/04_releases.mkd b/docs/04_releases.mkd
index 9d721f9..2d5d7e5 100644
--- a/docs/04_releases.mkd
+++ b/docs/04_releases.mkd
@@ -12,6 +12,7 @@
#### fixes
+- Fixed broken ticgit urls (issue 157)
- Exclude submodules from zip downloads (issue 151)
- Fixed bug where repository ownership was not updated on rename user
- Fixed bug in create/rename repository if you explicitly specified the alias for the root group (e.g. main/myrepo) (issue 143)
diff --git a/src/com/gitblit/wicket/GitBlitWebApp.java b/src/com/gitblit/wicket/GitBlitWebApp.java
index 245b1e0..4e32daa 100644
--- a/src/com/gitblit/wicket/GitBlitWebApp.java
+++ b/src/com/gitblit/wicket/GitBlitWebApp.java
@@ -104,7 +104,7 @@
// setup ticket urls
mount("/tickets", TicketsPage.class, "r");
- mount("/ticket", TicketPage.class, "r", "h", "f");
+ mount("/ticket", TicketPage.class, "r", "f");
// setup the markdown urls
mount("/docs", DocsPage.class, "r");
--
Gitblit v1.9.1