diff --git a/lms/djangoapps/courseware/views.py b/lms/djangoapps/courseware/views.py index c9b50d18b6..15d0edaf99 100644 --- a/lms/djangoapps/courseware/views.py +++ b/lms/djangoapps/courseware/views.py @@ -748,6 +748,9 @@ def course_about(request, course_id): 'invitation_only': invitation_only, 'active_reg_button': active_reg_button, 'is_shib_course': is_shib_course, + # We do not want to display the internal courseware header, which is used when the course is found in the + # context. This value is therefor explicitly set to render the appropriate header. + 'disable_courseware_header': True, }) diff --git a/lms/templates/navigation.html b/lms/templates/navigation.html index ab42f2b55d..d5807a93a8 100644 --- a/lms/templates/navigation.html +++ b/lms/templates/navigation.html @@ -36,7 +36,7 @@ site_status_msg = get_site_status_msg(course_id) % endif -