Commit 73bd8637 by Ben McMorran Committed by cahrens

Fix staff outline bug

parent f31475a2
...@@ -275,7 +275,7 @@ def xblock_outline_handler(request, usage_key_string): ...@@ -275,7 +275,7 @@ def xblock_outline_handler(request, usage_key_string):
This is used by the course outline in particular to construct the tree representation of This is used by the course outline in particular to construct the tree representation of
a course. a course.
""" """
usage_key = UsageKey.from_string(usage_key_string) usage_key = usage_key_with_run(usage_key_string)
if not has_course_access(request.user, usage_key.course_key): if not has_course_access(request.user, usage_key.course_key):
raise PermissionDenied() raise PermissionDenied()
......
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