diff --git a/lms/djangoapps/courseware/module_render.py b/lms/djangoapps/courseware/module_render.py index a61e8b9e23..65e30475f2 100644 --- a/lms/djangoapps/courseware/module_render.py +++ b/lms/djangoapps/courseware/module_render.py @@ -374,7 +374,7 @@ def modx_dispatch(request, dispatch, location, course_id): # ''' (fix emacs broken parsing) # Check for submitted files and basic file size checks - p = request.POST.dict() + p = request.POST.copy() if request.FILES: for fileinput_id in request.FILES.keys(): inputfiles = request.FILES.getlist(fileinput_id) diff --git a/lms/envs/common.py b/lms/envs/common.py index 151bffaa32..a217f0e7b9 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -317,6 +317,7 @@ SIMPLE_WIKI_REQUIRE_LOGIN_VIEW = False WIKI_ACCOUNT_HANDLING = False WIKI_EDITOR = 'course_wiki.editors.CodeMirror' WIKI_SHOW_MAX_CHILDREN = 0 # We don't use the little menu that shows children of an article in the breadcrumb +WIKI_ANONYMOUS = False # Don't allow anonymous access until the styling is figured out ################################# Jasmine ################################### JASMINE_TEST_DIRECTORY = PROJECT_ROOT + '/static/coffee' @@ -582,7 +583,7 @@ INSTALLED_APPS = ( 'course_wiki', # Our customizations 'mptt', 'sekizai', - 'wiki.plugins.attachments', + #'wiki.plugins.attachments', 'wiki.plugins.notifications', 'course_wiki.plugins.markdownedx', diff --git a/lms/templates/seq_module.html b/lms/templates/seq_module.html index a918f3c1de..9e26543fbd 100644 --- a/lms/templates/seq_module.html +++ b/lms/templates/seq_module.html @@ -23,7 +23,7 @@ % for item in items: -