Fix userID reference in getJoinMeetingURL() for BBB plugin - refs CT#8196

pull/2487/head
Yannick Warnier 10 years ago
parent 7b08cd7e4d
commit c5b4291d78
  1. 2
      plugin/bbb/lib/bbb_api.php

@ -213,7 +213,7 @@ class BigBlueButtonBN {
'meetingID='.urlencode($this->_meetingId).
'&fullName='.urlencode($this->_username).
'&password='.urlencode($this->_password).
'&userID='.urlencode($joinParams['userId']).
'&userID='.urlencode($joinParams['userID']).
'&webVoiceConf='.urlencode($joinParams['webVoiceConf']);
// Only use createTime if we really want to use it. If it's '', then don't pass it:
if (((isset($joinParams['createTime'])) && ($joinParams['createTime'] != ''))) {

Loading…
Cancel
Save