Skip to content
Snippets Groups Projects
Commit 2d5f0875 authored by srosse's avatar srosse
Browse files

OO-588: fix an issue where the last course building block's resource is not...

OO-588: fix an issue where the last course building block's resource is not imported with the rest of the course
parent d5811777
No related branches found
No related tags found
No related merge requests found
......@@ -424,18 +424,10 @@ public class ImportCourseController extends BasicController implements IAddContr
break;
}
if (nodeListPos == nodeList.size() ) {
return true;
}
myPanel.setContent(activeImportController.getInitialComponent());
return false;
} else {
if (nodeListPos == nodeList.size() ) {
return true;
}
} else if (nodeListPos == nodeList.size() ) {
return true;
}
}
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment