diff --git a/plugin/bbb/start.php b/plugin/bbb/start.php index e34c53a487..32d7106204 100644 --- a/plugin/bbb/start.php +++ b/plugin/bbb/start.php @@ -36,6 +36,10 @@ if ($bbb->plugin_enabled) { $url = $bbb->create_meeting($meeting_params); header('location: '.$url); exit; + } else { + $url = 'listing.php'; + header('location: '.$url); + exit; } } } else { @@ -50,4 +54,4 @@ if ($bbb->plugin_enabled) { $message = Display::return_message(get_lang('ServerIsNotConfigured'), 'warning'); } $tpl->assign('message', $message); -$tpl->display_one_col_template(); \ No newline at end of file +$tpl->display_one_col_template();