diff options
author | James Moger <james.moger@gitblit.com> | 2012-10-31 16:30:51 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-10-31 16:30:51 -0400 |
commit | d7be8cc077a85658809cf6d8cef98a6910f0f858 (patch) | |
tree | d39ec7a9fa602e0296a31e6f440c272eb2f54a8c | |
parent | 9ba9be513a347ea9893c51f2db6b13f6c7cb08dd (diff) | |
download | gitblit-d7be8cc077a85658809cf6d8cef98a6910f0f858.tar.gz gitblit-d7be8cc077a85658809cf6d8cef98a6910f0f858.zip |
Fixed ticgit ticket urls (issue 157)
-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");
|