From 0aabb2304b1b1b4f4c5170af3b7f4c5cfff94060 Mon Sep 17 00:00:00 2001 From: Mike Bifulco Date: Thu, 30 Jul 2015 15:49:09 -0400 Subject: [PATCH] changing "discussion" tab to say "Forum" not particularly happy with this change, but I can't for the life of me figure out where in the hell the ['name'] property of the Discussion tabs are populated. --- common/lib/xmodule/xmodule/tabs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lib/xmodule/xmodule/tabs.py b/common/lib/xmodule/xmodule/tabs.py index fb0926950a1f..355a2cbd8be7 100644 --- a/common/lib/xmodule/xmodule/tabs.py +++ b/common/lib/xmodule/xmodule/tabs.py @@ -375,7 +375,7 @@ class DiscussionTab(EnrolledOrStaffTab): def __init__(self, tab_dict=None): super(DiscussionTab, self).__init__( # Translators: "Discussion" is the title of the course forum page - name=tab_dict['name'] if tab_dict else _('Discussion'), + name='Forum', #tab_dict['name'] if tab_dict else _('Discussion'), tab_id=self.type, link_func=link_reverse_func('django_comment_client.forum.views.forum_form_discussion'), )