You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by gc...@apache.org on 2022/06/02 18:38:06 UTC

[allura] branch master updated: added missing trailing slash on stats link

This is an automated email from the ASF dual-hosted git repository.

gcruz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git


The following commit(s) were added to refs/heads/master by this push:
     new 4b67d801e added missing trailing slash on stats link
4b67d801e is described below

commit 4b67d801e25332a1e3454f37701a1a1594d9e60e
Author: Guillermo Cruz <gu...@slashdotmedia.com>
AuthorDate: Thu Jun 2 12:37:54 2022 -0600

    added missing trailing slash on stats link
---
 ForgeTracker/forgetracker/tracker_main.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ForgeTracker/forgetracker/tracker_main.py b/ForgeTracker/forgetracker/tracker_main.py
index ce39db441..9a49feca7 100644
--- a/ForgeTracker/forgetracker/tracker_main.py
+++ b/ForgeTracker/forgetracker/tracker_main.py
@@ -371,7 +371,7 @@ class ForgeTrackerApp(Application):
             links.append(SitemapEntry('Edit Searches', c.project.url() + 'admin/' +
                          c.app.config.options.mount_point + '/bins/', ui_icon=g.icons['search']))
         links.append(SitemapEntry('View Stats', self.config.url()
-                     + 'stats', ui_icon=g.icons['stats']))
+                     + 'stats/', ui_icon=g.icons['stats']))
         discussion = c.app.config.discussion
         pending_mod_count = M.Post.query.find({
             'discussion_id': discussion._id,