From 5e3b084c1aa4e57b717c66f6ba473826cd0cc2cd Mon Sep 17 00:00:00 2001 From: Chris Dodge Date: Fri, 8 Mar 2013 13:50:58 -0500 Subject: [PATCH] fix regression where wrap_xmodule_display got set to True for 'about' and 'info' --- lms/djangoapps/courseware/courses.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/djangoapps/courseware/courses.py b/lms/djangoapps/courseware/courses.py index 20d1a19c50..ee1d9ab8f1 100644 --- a/lms/djangoapps/courseware/courses.py +++ b/lms/djangoapps/courseware/courses.py @@ -163,7 +163,7 @@ def get_course_about_section(course, section_key): model_data_cache, course.id, not_found_ok=True, - wrap_xmodule_display=True + wrap_xmodule_display=False ) html = '' @@ -213,7 +213,7 @@ def get_course_info_section(request, course, section_key): loc, model_data_cache, course.id, - wrap_xmodule_display=True + wrap_xmodule_display=False ) html = ''