Commit 5e3b084c by Chris Dodge

fix regression where wrap_xmodule_display got set to True for 'about' and 'info'

parent 4c72dbfc
...@@ -163,7 +163,7 @@ def get_course_about_section(course, section_key): ...@@ -163,7 +163,7 @@ def get_course_about_section(course, section_key):
model_data_cache, model_data_cache,
course.id, course.id,
not_found_ok=True, not_found_ok=True,
wrap_xmodule_display=True wrap_xmodule_display=False
) )
html = '' html = ''
...@@ -213,7 +213,7 @@ def get_course_info_section(request, course, section_key): ...@@ -213,7 +213,7 @@ def get_course_info_section(request, course, section_key):
loc, loc,
model_data_cache, model_data_cache,
course.id, course.id,
wrap_xmodule_display=True wrap_xmodule_display=False
) )
html = '' html = ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment