From d7be8cc077a85658809cf6d8cef98a6910f0f858 Mon Sep 17 00:00:00 2001 From: James Moger 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 deletion(-) diff --git a/docs/04_releases.mkd b/docs/04_releases.mkd index 9d721f92..2d5d7e55 100644 --- a/docs/04_releases.mkd +++ b/docs/04_releases.mkd @@ -12,6 +12,7 @@ The permissions model has changed in this release. #### 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 245b1e05..4e32daac 100644 --- a/src/com/gitblit/wicket/GitBlitWebApp.java +++ b/src/com/gitblit/wicket/GitBlitWebApp.java @@ -104,7 +104,7 @@ public class GitBlitWebApp extends WebApplication { // 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"); -- 2.39.5