diff --git a/plugin/bbb/listing.php b/plugin/bbb/listing.php index 26ddcfc6d4..07a44b8d54 100755 --- a/plugin/bbb/listing.php +++ b/plugin/bbb/listing.php @@ -129,7 +129,7 @@ $maxUsers = $bbb->getMaxUsersLimit(); $status = $bbb->isServerRunning(); $meetingExists = $bbb->meetingExists($bbb->getCurrentVideoConferenceName()); $showJoinButton = false; -if (($meetingExists || $conferenceManager) && ($maxUsers == 0 || $maxUsers > $usersOnline)) { +if ($meetingExists && ($maxUsers == 0 || $maxUsers > $usersOnline)) { $showJoinButton = true; } $conferenceUrl = $bbb->getConferenceUrl(); diff --git a/plugin/bbb/listing.tpl b/plugin/bbb/listing.tpl index c2d83f12bc..3d860c7bb7 100755 --- a/plugin/bbb/listing.tpl +++ b/plugin/bbb/listing.tpl @@ -1,9 +1,9 @@
{% if bbb_status == true %} -
+
+ {{ form }} {% if show_join_button == true %} - {{ form }}

{{ 'EnterConference'|get_lang }} @@ -32,7 +32,7 @@ {% endif %}

-
+
@@ -88,7 +88,7 @@
{% else %} -
+
{{ 'ServerIsNotRunning' | return_message('warning') }}
{% endif %}