Fix issue not showing join conference button to students - refs #7122

1.9.x
Yannick Warnier 12 years ago
parent ac63162f43
commit d386086d29
  1. 2
      plugin/bbb/lib/bbb.lib.php

@ -115,7 +115,7 @@ class bbb {
if ($id) { if ($id) {
if ($this->debug) error_log("create_meeting: $id "); if ($this->debug) error_log("create_meeting: $id ");
$meeting_name = isset($params['meeting_name']) ? $params['meeting_name'] : api_get_course_id(); $meeting_name = isset($params['meeting_name']) ? $params['meeting_name'] : api_get_course_id().'-'.api_get_session_id();
$welcome_msg = isset($params['welcome_msg']) ? $params['welcome_msg'] : null; $welcome_msg = isset($params['welcome_msg']) ? $params['welcome_msg'] : null;
$record = isset($params['record']) && $params['record'] ? 'true' : 'false'; $record = isset($params['record']) && $params['record'] ? 'true' : 'false';
$duration = isset($params['duration']) ? intval($params['duration']) : 0; $duration = isset($params['duration']) ? intval($params['duration']) : 0;

Loading…
Cancel
Save