From 1787157e009888b1819e1b88f1913661016a6b0d Mon Sep 17 00:00:00 2001 From: Chris Dodge Date: Thu, 24 Jan 2013 21:38:02 -0500 Subject: [PATCH] put back the 'position' argument to get_module() which got accidentially - or so I think - dropped in a previous commit --- lms/djangoapps/courseware/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/courseware/views.py b/lms/djangoapps/courseware/views.py index b1c4a5e9a9..c00aa25dae 100644 --- a/lms/djangoapps/courseware/views.py +++ b/lms/djangoapps/courseware/views.py @@ -235,7 +235,7 @@ def index(request, course_id, chapter=None, section=None, # Load all descendents of the section, because we're going to display it's # html, which in general will need all of its children section_module = get_module(request.user, request, section_descriptor.location, - student_module_cache, course.id, depth=None) + student_module_cache, course.id, position=position, depth=None) if section_module is None: # User may be trying to be clever and access something # they don't have access to.