From c5b4291d7868ddeea74ea2e04da27b18686c04c5 Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Fri, 29 Apr 2016 18:46:55 -0500 Subject: [PATCH] Fix userID reference in getJoinMeetingURL() for BBB plugin - refs CT#8196 --- plugin/bbb/lib/bbb_api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/bbb/lib/bbb_api.php b/plugin/bbb/lib/bbb_api.php index 84d958e3bc..9674c16d4f 100755 --- a/plugin/bbb/lib/bbb_api.php +++ b/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'] != ''))) {