From 50f27bcfb7f60df837b9bd9ff49ff9dfd6bebd59 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Fri, 20 Jul 2012 11:21:34 -0400 Subject: [PATCH] Eagerly load all modules when reading the course from xml, so that users who are already on a problem page can check their answers --- lms/envs/common.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lms/envs/common.py b/lms/envs/common.py index a49a7b814f..19d87e8eb7 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -152,6 +152,7 @@ MODULESTORE = { 'OPTIONS': { 'data_dir': DATA_DIR, 'default_class': 'xmodule.hidden_module.HiddenDescriptor', + 'eager': True, } } }