diff --git a/kallithea/config/routing.py b/kallithea/config/routing.py
--- a/kallithea/config/routing.py
+++ b/kallithea/config/routing.py
@@ -109,7 +109,7 @@ def make_map(config):
"http://docutils.sourceforge.net/docs/user/rst/quickref.html",
_static=True)
rmap.connect('kallithea_project_url', "https://kallithea-scm.org/", _static=True)
- rmap.connect('rc_issue_tracker', 'https://bitbucket.org/conservancy/kallithea/issues', _static=True)
+ rmap.connect('issues_url', 'https://bitbucket.org/conservancy/kallithea/issues', _static=True)
#ADMIN REPOSITORY ROUTES
with rmap.submapper(path_prefix=ADMIN_PREFIX,
diff --git a/kallithea/lib/base.py b/kallithea/lib/base.py
--- a/kallithea/lib/base.py
+++ b/kallithea/lib/base.py
@@ -308,7 +308,7 @@ class BaseController(WSGIController):
c.visual.allow_custom_hooks_settings = str2bool(config.get('allow_custom_hooks_settings', True))
c.rhodecode_instanceid = config.get('instance_id')
- c.rhodecode_bugtracker = config.get('bugtracker', url('rc_issue_tracker'))
+ c.issues_url = config.get('bugtracker', url('issues_url'))
# END CONFIG VARS
c.repo_name = get_repo_slug(request) # can be empty
diff --git a/kallithea/templates/base/base.html b/kallithea/templates/base/base.html
--- a/kallithea/templates/base/base.html
+++ b/kallithea/templates/base/base.html
@@ -45,8 +45,8 @@
%endif
which is
© 2010–2014 by various authors & licensed under GPLv3.
- %if c.rhodecode_bugtracker:
- – ${_('Support')}
+ %if c.issues_url:
+ – ${_('Support')}
%endif