Plugin: BBB: Fix global chat not available in admin list (avoid overwriting _p array with plugin paths)

Author: hichamon306@gmail.com
pull/4863/head
hichamon306 2 years ago committed by GitHub
parent 1c39f4d577
commit 5ed5e70879
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      plugin/bbb/admin.php

@ -98,7 +98,7 @@ if (!$bbb->isServerRunning()) {
$htmlHeadXtra[] = api_get_js_simple(
api_get_path(WEB_PLUGIN_PATH).'bbb/resources/utils.js'
);
$htmlHeadXtra[] = "<script>var _p = {web_plugin: '".api_get_path(WEB_PLUGIN_PATH)."'}</script>";
$htmlHeadXtra[] = "<script> _p.web_plugin = '".api_get_path(WEB_PLUGIN_PATH)."'</script>";
$tpl = new Template($tool_name);
$tpl->assign('meetings', $meetings);

Loading…
Cancel
Save