From c84d809ec4be53ebdb3fe927794a09cd196eeed1 Mon Sep 17 00:00:00 2001 From: Vikrant1 <vikrant1@gmail.com> Date: Wed, 8 Aug 2012 22:56:10 +0200 Subject: [PATCH] Update labs/bbb-api-php/includes/bbb-api.php Fixed function getCreateMeetingUrl() so that the duration parameter is passed properly when creating meeting. Minor change was required to the file: Line 137 was changed to end with ";" instead of "." --- labs/bbb-api-php/includes/bbb-api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs/bbb-api-php/includes/bbb-api.php b/labs/bbb-api-php/includes/bbb-api.php index 2bc6322cef..a932c1fafe 100644 --- a/labs/bbb-api-php/includes/bbb-api.php +++ b/labs/bbb-api-php/includes/bbb-api.php @@ -134,7 +134,7 @@ class BigBlueButton { '&logoutURL='.urlencode($creationParams['logoutUrl']). '&maxParticipants='.urlencode($creationParams['maxParticipants']). '&record='.urlencode($creationParams['record']). - '&duration='.urlencode($creationParams['duration']). + '&duration='.urlencode($creationParams['duration']); //'&meta_category='.urlencode($creationParams['meta_category']); $welcomeMessage = $creationParams['welcomeMsg']; if(trim($welcomeMessage)) -- GitLab