Also extract html files

(cherry picked from commit 856bdab)
This commit is contained in:
nbaars
2015-01-04 07:41:00 +01:00
parent 0d48b83e82
commit ca6984e939
3 changed files with 16 additions and 5 deletions

View File

@ -461,9 +461,10 @@ public class Course {
public void loadCourses(WebgoatContext webgoatContext, ServletContext context, String path) {
logger.info("Loading courses: " + path);
this.webgoatContext = webgoatContext;
loadLessionFromPlugin(context);
loadFiles(context, path);
loadLessons(path);
loadResources();
loadLessionFromPlugin(context);
}
}