Skip to content

Commit

Permalink
v2.0.0-rc1: Fix for CONTRIB-5911
Browse files Browse the repository at this point in the history
  • Loading branch information
jfederico committed Sep 16, 2015
1 parent 0d5f984 commit eaed18a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion view.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
}

$bbbsession['userlimit'] = intval($bigbluebuttonbn->userlimit);
$bbbsession['voicebridge'] = 70000 + $bigbluebuttonbn->voicebridge;
$bbbsession['voicebridge'] = ($bigbluebuttonbn->voicebridge > 0)? 70000 + $bigbluebuttonbn->voicebridge: $bigbluebuttonbn->voicebridge;
$bbbsession['wait'] = $bigbluebuttonbn->wait;
$bbbsession['record'] = $bigbluebuttonbn->record;
if( $bigbluebuttonbn->record )
Expand Down

0 comments on commit eaed18a

Please sign in to comment.