Does anyone know if there's a way of getting the theme name for a course or for the system?
Not tried this before, but the following gives me the theme name in Learn 9.1.8:
blackboard.platform.branding.common.Theme theme = (blackboard.platform.branding.common.Theme)request.getAttribute("currentTheme");System.err.println("Theme name: " + theme.getName());
HTH
Thanks, that does the trick