@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | $course_plugin = 'bbb'; //needed in order to load the plugin lang variables |
10 | 10 | $cidReset = true; |
11 | 11 | |
12 | -require_once __DIR__ . '/../../main/inc/global.inc.php'; |
|
12 | +require_once __DIR__.'/../../main/inc/global.inc.php'; |
|
13 | 13 | |
14 | 14 | api_protect_admin_script(); |
15 | 15 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | /** @var User $participant */ |
52 | 52 | $participant = $meetingParticipant['participant']; |
53 | 53 | $meeting['participants'][] = $participant->getCompleteName() |
54 | - . ' (' . $participant->getEmail() . ')'; |
|
54 | + . ' ('.$participant->getEmail().')'; |
|
55 | 55 | } |
56 | 56 | } |
57 | 57 | |
@@ -98,9 +98,9 @@ discard block |
||
98 | 98 | } |
99 | 99 | |
100 | 100 | $htmlHeadXtra[] = api_get_js_simple( |
101 | - api_get_path(WEB_PLUGIN_PATH) . 'bbb/resources/utils.js' |
|
101 | + api_get_path(WEB_PLUGIN_PATH).'bbb/resources/utils.js' |
|
102 | 102 | ); |
103 | -$htmlHeadXtra[] = "<script>var _p = {web_plugin: '" . api_get_path(WEB_PLUGIN_PATH). "'}</script>"; |
|
103 | +$htmlHeadXtra[] = "<script>var _p = {web_plugin: '".api_get_path(WEB_PLUGIN_PATH)."'}</script>"; |
|
104 | 104 | |
105 | 105 | $tpl = new Template($tool_name); |
106 | 106 | $tpl->assign('meetings', $meetings); |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | if ($meetings) { |
113 | 113 | $actions[] = Display::toolbarButton( |
114 | 114 | get_lang('ExportInExcel'), |
115 | - api_get_self() . '?' . http_build_query([ |
|
115 | + api_get_self().'?'.http_build_query([ |
|
116 | 116 | 'action' => 'export', |
117 | 117 | 'search_meeting_start' => $dateStart, |
118 | 118 | 'search_meeting_end' => $dateEnd |