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

Merge remote-tracking branch 'origin/OpenOLAT_15.0'

parents 2e945c23 06e68bb2
No related branches found
No related tags found
No related merge requests found
......@@ -147,7 +147,7 @@ public class ThreadLocalUserActivityLogger {
public static void log(ILoggingAction loggingAction, Class<?> callingClass, ILoggingResourceable... loggingResourceables) {
IUserActivityLogger logger = userActivityLogger_.get();
if (logger==null) {
log_.error("No ThreadLocal IUserActivityLogger set - cannot log to database: "+loggingAction.getActionVerb());
log_.debug("No ThreadLocal IUserActivityLogger set - cannot log to database: {}", loggingAction.getActionVerb());
} else {
logger.log(loggingAction, callingClass, loggingResourceables);
}
......
......@@ -145,13 +145,12 @@ public class BigBlueButtonAdminController extends BasicController implements Act
}
private void doOpenConfiguration(UserRequest ureq) {
if(configCtrl == null) {
WindowControl bwControl = addToHistory(ureq, OresHelper.createOLATResourceableInstance("Configuration", 0l), null);
configCtrl = new BigBlueButtonConfigurationController(ureq, bwControl);
listenTo(configCtrl);
} else {
addToHistory(ureq, configCtrl);
}
removeAsListenerAndDispose(configCtrl);
WindowControl bwControl = addToHistory(ureq, OresHelper.createOLATResourceableInstance("Configuration", 0l), null);
configCtrl = new BigBlueButtonConfigurationController(ureq, bwControl);
listenTo(configCtrl);
mainVC.put("segmentCmp", configCtrl.getInitialComponent());
}
......
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