Completed
Push — 1.10.x ( c82817...6a93c3 )
by Yannick
202:42 queued 149:59
created
plugin/bbb/admin.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     /** @var User $participant */
28 28
     foreach ($participants as $participant) {
29 29
         $meeting['participants'][] = $participant['participant']->getCompleteName()
30
-            . ' (' . $participant['participant']->getUsername() . ')';
30
+            . ' ('.$participant['participant']->getUsername().')';
31 31
     }
32 32
 }
33 33
 
@@ -74,9 +74,9 @@  discard block
 block discarded – undo
74 74
 }
75 75
 
76 76
 $htmlHeadXtra[] = api_get_js_simple(
77
-    api_get_path(WEB_PLUGIN_PATH) . 'bbb/resources/utils.js'
77
+    api_get_path(WEB_PLUGIN_PATH).'bbb/resources/utils.js'
78 78
 );
79
-$htmlHeadXtra[] = "<script>var _p = {web_plugin: '" . api_get_path(WEB_PLUGIN_PATH). "'}</script>";
79
+$htmlHeadXtra[] = "<script>var _p = {web_plugin: '".api_get_path(WEB_PLUGIN_PATH)."'}</script>";
80 80
 
81 81
 $tpl = new Template($tool_name);
82 82
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 if ($meetings) {
89 89
     $actions[] = Display::toolbarButton(
90 90
         get_lang('ExportInExcel'),
91
-        api_get_self() . '?action=export',
91
+        api_get_self().'?action=export',
92 92
         'file-excel-o',
93 93
         'success'
94 94
     );
Please login to merge, or discard this patch.