diff --git a/plinth/modules/help/help.py b/plinth/modules/help/help.py index f61d7af23..a93ee66a5 100644 --- a/plinth/modules/help/help.py +++ b/plinth/modules/help/help.py @@ -36,9 +36,6 @@ def init(): """Initialize the Help module""" menu = main_menu.add_urlname( ugettext_lazy('Documentation'), 'glyphicon-book', 'help:index') - menu.add_urlname( - ugettext_lazy('Where to Get Help'), 'glyphicon-search', - 'help:index-explicit', order=5) menu.add_urlname( ugettext_lazy('Manual'), 'glyphicon-info-sign', 'help:manual', order=10) diff --git a/plinth/modules/help/urls.py b/plinth/modules/help/urls.py index dba07ecf0..2b4445d4a 100644 --- a/plinth/modules/help/urls.py +++ b/plinth/modules/help/urls.py @@ -25,11 +25,7 @@ from plinth.utils import non_admin_view from . import help as views urlpatterns = [ - # having two urls for one page is a hack to help the current url/menu - # system highlight the correct menu item. Every submenu-item with the same - # url prefix as the main-menu is highlighted automatically. url(r'^help/$', non_admin_view(views.index), name='index'), - url(r'^help/index/$', non_admin_view(views.index), name='index-explicit'), url(r'^help/about/$', non_admin_view(views.about), name='about'), url(r'^help/manual/$', non_admin_view(views.manual), name='manual'), url(r'^help/manual/download/$', non_admin_view(views.download_manual),