diff options
-rw-r--r-- | docs/04_releases.mkd | 1 | ||||
-rw-r--r-- | 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 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");
|